WindowServer: Make set_background_color and set_wallpaper_mode async

Both of these were already used asynchonrously by GUI::Desktop.
This commit is contained in:
Andreas Kling 2021-05-10 12:21:42 +02:00
parent b8411d1ef6
commit 11dc790d69
Notes: sideshowbarker 2024-07-18 18:23:07 +09:00

View File

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