diff options
author | Andreas Kling <kling@serenityos.org> | 2020-05-02 12:15:48 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-02 12:24:23 +0200 |
commit | 3331098aee05f1e27039b60fb7eb5cda01fffac1 (patch) | |
tree | 85a80120c6185eaea8ce26dec4142404df40ae23 /Servers/WindowServer/WindowClient.ipc | |
parent | c9321b4f009a4e8a143d55e30ba5e0a4718785ff (diff) | |
download | serenity-3331098aee05f1e27039b60fb7eb5cda01fffac1.zip |
WindowServer+LibGUI+Taskbar: Don't include frameless windows in lists
Frameless windows don't need to show up in the taskbar or the switcher.
Diffstat (limited to 'Servers/WindowServer/WindowClient.ipc')
-rw-r--r-- | Servers/WindowServer/WindowClient.ipc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Servers/WindowServer/WindowClient.ipc b/Servers/WindowServer/WindowClient.ipc index bd0d690b52..3c94ccf89e 100644 --- a/Servers/WindowServer/WindowClient.ipc +++ b/Servers/WindowServer/WindowClient.ipc @@ -23,7 +23,7 @@ endpoint WindowClient = 4 ClipboardContentsChanged(String content_type) =| WM_WindowRemoved(i32 wm_id, i32 client_id, i32 window_id) =| - WM_WindowStateChanged(i32 wm_id, i32 client_id, i32 window_id, bool is_active, bool is_minimized, i32 window_type, String title, Gfx::Rect rect) =| + WM_WindowStateChanged(i32 wm_id, i32 client_id, i32 window_id, bool is_active, bool is_minimized, bool is_frameless, i32 window_type, String title, Gfx::Rect rect) =| WM_WindowIconBitmapChanged(i32 wm_id, i32 client_id, i32 window_id, i32 icon_buffer_id, Gfx::Size icon_size) =| WM_WindowRectChanged(i32 wm_id, i32 client_id, i32 window_id, Gfx::Rect rect) =| |