From b8411d1ef627ea23f9e9c8e9f38716c9a83dd0ce Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 10 May 2021 12:12:37 +0200 Subject: [PATCH] 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. --- Userland/Services/WindowServer/WindowServer.ipc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Services/WindowServer/WindowServer.ipc b/Userland/Services/WindowServer/WindowServer.ipc index 24b7993bd99..713bbc03585 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) =|