WindowServer: Make dismiss_menu() an asynchronous IPC call

This was already being used asynchronously by LibGUI, which meant that
WindowServer would generate a response, and the client would ignore it.
This commit is contained in:
Andreas Kling 2021-05-10 12:12:37 +02:00
commit b8411d1ef6
Notes: sideshowbarker 2024-07-18 18:23:10 +09:00

View file

@ -86,7 +86,7 @@ endpoint WindowServer
set_fullscreen(i32 window_id, bool fullscreen) => ()
set_frameless(i32 window_id, bool frameless) => ()
popup_menu(i32 menu_id, Gfx::IntPoint screen_position) =|
dismiss_menu(i32 menu_id) => ()
dismiss_menu(i32 menu_id) =|
set_wallpaper(String path) =|