summaryrefslogtreecommitdiff
path: root/Userland/Services
diff options
context:
space:
mode:
authorFrHun <28605587+frhun@users.noreply.github.com>2022-06-12 23:25:44 +0200
committerSam Atkins <atkinssj@gmail.com>2022-06-28 17:52:42 +0100
commit3451181fbf2d6c33d70f3e2cd493ac39cc3ef65a (patch)
tree68e4310a74c04a51c2e8a97b37314b2fd4932768 /Userland/Services
parent603034759f9eb52d6ce99af7464fd1e41bc33b9a (diff)
downloadserenity-3451181fbf2d6c33d70f3e2cd493ac39cc3ef65a.zip
NotificationServer: Remove usages of deprecated implicit ui conversions
Diffstat (limited to 'Userland/Services')
-rw-r--r--Userland/Services/NotificationServer/NotificationWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/NotificationServer/NotificationWindow.cpp b/Userland/Services/NotificationServer/NotificationWindow.cpp
index 834e4b5346..5bba562ed6 100644
--- a/Userland/Services/NotificationServer/NotificationWindow.cpp
+++ b/Userland/Services/NotificationServer/NotificationWindow.cpp
@@ -123,7 +123,7 @@ void NotificationWindow::enter_event(Core::Event&)
void NotificationWindow::leave_event(Core::Event&)
{
m_hovering = false;
- m_text_label->set_fixed_height(-1);
+ m_text_label->set_preferred_height(GUI::SpecialDimension::Grow);
set_height(40);
}