From 11dc790d694280a76277ff15d2e015a80ce6734a Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 10 May 2021 12:21:42 +0200 Subject: [PATCH] WindowServer: Make set_background_color and set_wallpaper_mode async Both of these were already used asynchonrously by GUI::Desktop. --- Userland/Services/WindowServer/WindowServer.ipc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Services/WindowServer/WindowServer.ipc b/Userland/Services/WindowServer/WindowServer.ipc index 713bbc0358..94410d650a 100644 --- a/Userland/Services/WindowServer/WindowServer.ipc +++ b/Userland/Services/WindowServer/WindowServer.ipc @@ -90,8 +90,8 @@ endpoint WindowServer set_wallpaper(String path) =| - set_background_color(String background_color) => () - set_wallpaper_mode(String mode) => () + set_background_color(String background_color) =| + set_wallpaper_mode(String mode) =| set_resolution(Gfx::IntSize resolution, int scale_factor) => (bool success, Gfx::IntSize resolution, int scale_factor) set_window_icon_bitmap(i32 window_id, Gfx::ShareableBitmap icon) =|