From 9b6021b79e9b0481564e99c1927a091bcbe9fd8a Mon Sep 17 00:00:00 2001 From: Stenzek Date: Thu, 30 Jan 2025 01:43:22 +1000 Subject: [PATCH] FullscreenUI: Fix progress bar padding in loading screen --- 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 18cc1e110..78220fc8f 100644 --- a/src/util/imgui_fullscreen.cpp +++ b/src/util/imgui_fullscreen.cpp @@ -3173,7 +3173,7 @@ void ImGuiFullscreen::DrawLoadingScreen(std::string_view image, std::string_view ImGui::TextUnformatted(buf.c_str(), buf.end_ptr()); } - ImGui::SetCursorPosY(ImGui::GetCursorPosY() + 5.0f); + ImGui::SetCursorPosY(ImGui::GetCursorPosY() + 5.0f * scale); ImGui::ProgressBar(has_progress ? (static_cast(progress_value) / static_cast(progress_max - progress_min)) :