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..
This commit is contained in:
Andreas Kling 2021-05-09 00:07:44 +02:00
commit 9d8aa2a57a
Notes: sideshowbarker 2024-07-18 18:28:29 +09:00
5 changed files with 9 additions and 9 deletions

View file

@ -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&);