1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:07:44 +00:00

WindowServer: Add a custom window type for Launcher

This keeps it out of the taskbar window list.
The stacking order is a little gnarly, but it seems to work OK still.
This commit is contained in:
Robin Burchell 2019-07-13 23:51:33 +02:00 committed by Andreas Kling
parent bee4544192
commit 0a1bd03f1d
7 changed files with 17 additions and 1 deletions

View file

@ -1,5 +1,6 @@
#pragma once
// Keep this in sync with WSWindowType.
enum class GWindowType {
Invalid = 0,
Normal,
@ -7,4 +8,6 @@ enum class GWindowType {
WindowSwitcher,
Taskbar,
Tooltip,
Menubar,
Launcher,
};