1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 22:18:12 +00:00

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
parent f556bd1045
commit b8411d1ef6

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) =|