diff options
author | Andreas Kling <kling@serenityos.org> | 2020-04-18 21:10:16 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-18 21:10:16 +0200 |
commit | 3d31f2e44bdbfd1ff5a369d9bc7a437a1342e0bf (patch) | |
tree | 75f303353fb1ae3b5b306eb519d9a69b138a9cb2 /Libraries | |
parent | 88908be350594c75ff1ceb9291a37d1bec1656a5 (diff) | |
download | serenity-3d31f2e44bdbfd1ff5a369d9bc7a437a1342e0bf.zip |
WindowServer: Add WindowType::Desktop
This new window type can be used to implement a desktop file manager
for example. :^)
Diffstat (limited to 'Libraries')
-rw-r--r-- | Libraries/LibGUI/WindowType.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibGUI/WindowType.h b/Libraries/LibGUI/WindowType.h index 7c2c63930b..b3b2638aba 100644 --- a/Libraries/LibGUI/WindowType.h +++ b/Libraries/LibGUI/WindowType.h @@ -39,6 +39,7 @@ enum class WindowType { Menubar, MenuApplet, Notification, + Desktop, }; } |