From c3209aa86867fd328a1be2c371d1bd8845f46dcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Fri, 17 Jan 2025 18:11:33 +0100 Subject: [PATCH] Notification layout fix (retroachievements, notices) --- UI/OnScreenDisplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/OnScreenDisplay.cpp b/UI/OnScreenDisplay.cpp index fc5e4b4765..7bbd95e093 100644 --- a/UI/OnScreenDisplay.cpp +++ b/UI/OnScreenDisplay.cpp @@ -99,7 +99,7 @@ static void MeasureNotice(const UIContext &dc, NoticeLevel level, const std::str iconW += 5.0f; *width += iconW + 12.0f; - *height1 = std::max(*height1, iconH + 2.0f); + // *height1 = std::max(*height1, iconH + 2.0f); // this didn't look very good *height = std::max(*height1 + height2 + 8.0f, iconH + 5.0f); }