FullscreenUI: Increase notification rounding

This commit is contained in:
Stenzek 2025-04-12 12:30:31 +10:00
parent c192bd798b
commit 9573286e3b
No known key found for this signature in database

View File

@ -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 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 min_height = (vertical_padding * 2.0f) + badge_size;
const float shadow_size = ImGuiFullscreen::LayoutScale(2.0f); 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 title_font = ImGuiFullscreen::UIStyle.LargeFont;
ImFont* const text_font = ImGuiFullscreen::UIStyle.MediumFont; ImFont* const text_font = ImGuiFullscreen::UIStyle.MediumFont;