diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-11-11 13:11:31 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-11-11 13:13:08 +0100 |
commit | dd2900eda05b7ca6c9fc0c7f1840acdf795cf1b3 (patch) | |
tree | e218c9a1bbb7cef9a845681d418ffec9f5ba8802 /Servers/WindowServer/WSWindow.h | |
parent | 26f41c7ecbb01b752273103b3d73f29976682dd8 (diff) | |
download | serenity-dd2900eda05b7ca6c9fc0c7f1840acdf795cf1b3.zip |
Launcher: Remove the Launcher app, and all hacks in support of it
The Launcher's functionality has been replaced by the app shortcuts in
the system menu.
There were various window management hacks to ensure that the launcher
stayed below all other windows while also being movable, etc.
Diffstat (limited to 'Servers/WindowServer/WSWindow.h')
-rw-r--r-- | Servers/WindowServer/WSWindow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Servers/WindowServer/WSWindow.h b/Servers/WindowServer/WSWindow.h index 9ed46b07d4..a77aba5d1c 100644 --- a/Servers/WindowServer/WSWindow.h +++ b/Servers/WindowServer/WSWindow.h @@ -45,7 +45,7 @@ public: bool is_movable() const { - return m_type == WSWindowType::Normal || m_type == WSWindowType::Launcher; + return m_type == WSWindowType::Normal; } WSWindowFrame& frame() { return m_frame; } |