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

WindowServer: Add WindowType::Desktop

This new window type can be used to implement a desktop file manager
for example. :^)
This commit is contained in:
Andreas Kling 2020-04-18 21:10:16 +02:00
parent 88908be350
commit 3d31f2e44b
4 changed files with 12 additions and 2 deletions

View file

@ -39,6 +39,7 @@ enum class WindowType {
Menubar,
MenuApplet,
Notification,
Desktop,
};
}