diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-09 00:07:44 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-09 00:11:37 +0200 |
commit | 9d8aa2a57a235bdcb1066bd9270cb954d2573e41 (patch) | |
tree | 2a4504a3382e7c4726781f1e82f0d03645cabbcd /Userland/Libraries/LibGUI | |
parent | fbe6c275c9329acd4e0135177e1427d667ef3fda (diff) | |
download | serenity-9d8aa2a57a235bdcb1066bd9270cb954d2573e41.zip |
Taskbar+LibGUI+WindowServer: Shrink taskbar by one pixel
Make the taskbar 27 pixels tall instead of 28. This makes the button
icons and applets vertically centered.
On a related note, this required touching *way* too many places..
Diffstat (limited to 'Userland/Libraries/LibGUI')
-rw-r--r-- | Userland/Libraries/LibGUI/Desktop.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/Desktop.h b/Userland/Libraries/LibGUI/Desktop.h index aee19953aa..f725d9b86e 100644 --- a/Userland/Libraries/LibGUI/Desktop.h +++ b/Userland/Libraries/LibGUI/Desktop.h @@ -27,7 +27,7 @@ public: Gfx::IntRect rect() const { return m_rect; } - int taskbar_height() const { return 28; } + int taskbar_height() const { return 27; } void did_receive_screen_rect(Badge<WindowServerConnection>, const Gfx::IntRect&); |