summaryrefslogtreecommitdiff
path: root/Userland/Services/Taskbar
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-05-10 12:26:35 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-10 12:26:35 +0200
commitbfeacb57285a5edc0a247dd93af0462bc6c2d204 (patch)
tree709f13bf6298afa0f07b475ca3e035053d88cfea /Userland/Services/Taskbar
parent11dc790d694280a76277ff15d2e015a80ce6734a (diff)
downloadserenity-bfeacb57285a5edc0a247dd93af0462bc6c2d204.zip
WindowServer+Taskbar: Make all the IPC used by Taskbar asynchronous
Diffstat (limited to 'Userland/Services/Taskbar')
-rw-r--r--Userland/Services/Taskbar/TaskbarWindow.cpp2
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)