summaryrefslogtreecommitdiff
path: root/Userland/Services
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-05-10 12:08:59 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-10 12:20:28 +0200
commit8684fca9df3fff2c3d38c8ccc2668d5f9658df42 (patch)
treebea655cfc9a041b931f16ec5f8360a5450a76ced /Userland/Services
parent691b6f69c5bbb3e39b551c7878165083b8929203 (diff)
downloadserenity-8684fca9df3fff2c3d38c8ccc2668d5f9658df42.zip
WindowServer+LibGUI: Make "move window to front" asynchronous
Diffstat (limited to 'Userland/Services')
-rw-r--r--Userland/Services/WindowServer/WindowServer.ipc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/WindowServer/WindowServer.ipc b/Userland/Services/WindowServer/WindowServer.ipc
index f74773243a..8656bd90f3 100644
--- a/Userland/Services/WindowServer/WindowServer.ipc
+++ b/Userland/Services/WindowServer/WindowServer.ipc
@@ -82,7 +82,7 @@ endpoint WindowServer
set_window_backing_store(i32 window_id, i32 bpp, i32 pitch, IPC::File anon_file, i32 serial, bool has_alpha_channel, Gfx::IntSize size, bool flush_immediately) => ()
set_window_has_alpha_channel(i32 window_id, bool has_alpha_channel) =|
- move_window_to_front(i32 window_id) => ()
+ move_window_to_front(i32 window_id) =|
set_fullscreen(i32 window_id, bool fullscreen) => ()
set_frameless(i32 window_id, bool frameless) => ()
popup_menu(i32 menu_id, Gfx::IntPoint screen_position) => ()