diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-10 12:12:37 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-10 12:20:28 +0200 |
commit | b8411d1ef627ea23f9e9c8e9f38716c9a83dd0ce (patch) | |
tree | 90f4a38e2873e82f36de0d10521ee579ed940a99 /Userland/Services | |
parent | f556bd10450af643879358c2ad2e42dc297d9440 (diff) | |
download | serenity-b8411d1ef627ea23f9e9c8e9f38716c9a83dd0ce.zip |
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.
Diffstat (limited to 'Userland/Services')
-rw-r--r-- | Userland/Services/WindowServer/WindowServer.ipc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/WindowServer/WindowServer.ipc b/Userland/Services/WindowServer/WindowServer.ipc index 24b7993bd9..713bbc0358 100644 --- a/Userland/Services/WindowServer/WindowServer.ipc +++ b/Userland/Services/WindowServer/WindowServer.ipc @@ -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) =| |