diff options
Diffstat (limited to 'Userland/Services/Taskbar')
-rw-r--r-- | Userland/Services/Taskbar/TaskbarWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/Taskbar/TaskbarWindow.cpp b/Userland/Services/Taskbar/TaskbarWindow.cpp index 01d2835b3e..fdcdf48c4e 100644 --- a/Userland/Services/Taskbar/TaskbarWindow.cpp +++ b/Userland/Services/Taskbar/TaskbarWindow.cpp @@ -164,7 +164,7 @@ void TaskbarWindow::update_applet_area() main_widget()->do_layout(); Gfx::IntRect new_rect { {}, m_applet_area_size }; new_rect.center_within(m_applet_area_container->screen_relative_rect()); - GUI::WindowManagerServerConnection::the().set_applet_area_position(new_rect.location()); + GUI::WindowManagerServerConnection::the().async_set_applet_area_position(new_rect.location()); } NonnullRefPtr<GUI::Button> TaskbarWindow::create_button(const WindowIdentifier& identifier) |