From 6c520fab878d4af1ad69fa56b34c89320121f959 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Wed, 2 Jun 2021 17:29:53 -0600 Subject: [PATCH] LibGUI: Desktop.h should get actual value from TaskbarWindow.h --- Userland/Libraries/LibGUI/Desktop.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Userland/Libraries/LibGUI/Desktop.h b/Userland/Libraries/LibGUI/Desktop.h index f725d9b86e..de53efeb0c 100644 --- a/Userland/Libraries/LibGUI/Desktop.h +++ b/Userland/Libraries/LibGUI/Desktop.h @@ -10,6 +10,7 @@ #include #include #include +#include namespace GUI { @@ -27,7 +28,7 @@ public: Gfx::IntRect rect() const { return m_rect; } - int taskbar_height() const { return 27; } + int taskbar_height() const { return TaskbarWindow::taskbar_height(); } void did_receive_screen_rect(Badge, const Gfx::IntRect&);