From 9573286e3b2ddb2f7ed51a2d2d2c9a114754f9f1 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sat, 12 Apr 2025 12:30:31 +1000 Subject: [PATCH] FullscreenUI: Increase notification rounding --- src/util/imgui_fullscreen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/imgui_fullscreen.cpp b/src/util/imgui_fullscreen.cpp index d814ec3f4..058fb2718 100644 --- a/src/util/imgui_fullscreen.cpp +++ b/src/util/imgui_fullscreen.cpp @@ -3508,7 +3508,7 @@ void ImGuiFullscreen::DrawNotifications(ImVec2& position, float spacing) const float max_text_width = max_width - badge_size - (horizontal_padding * 2.0f) - horizontal_spacing; const float min_height = (vertical_padding * 2.0f) + badge_size; const float shadow_size = ImGuiFullscreen::LayoutScale(2.0f); - const float rounding = ImGuiFullscreen::LayoutScale(12.0f); + const float rounding = ImGuiFullscreen::LayoutScale(20.0f); ImFont* const title_font = ImGuiFullscreen::UIStyle.LargeFont; ImFont* const text_font = ImGuiFullscreen::UIStyle.MediumFont;