From bfeacb57285a5edc0a247dd93af0462bc6c2d204 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 10 May 2021 12:26:35 +0200 Subject: WindowServer+Taskbar: Make all the IPC used by Taskbar asynchronous --- Userland/Services/Taskbar/TaskbarWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/Services/Taskbar') 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 TaskbarWindow::create_button(const WindowIdentifier& identifier) -- cgit v1.2.3