From 3451181fbf2d6c33d70f3e2cd493ac39cc3ef65a Mon Sep 17 00:00:00 2001 From: FrHun <28605587+frhun@users.noreply.github.com> Date: Sun, 12 Jun 2022 23:25:44 +0200 Subject: [PATCH] NotificationServer: Remove usages of deprecated implicit ui conversions --- Userland/Services/NotificationServer/NotificationWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }