Skip to content

Commit

Permalink
FullscreenUI: Increase input dialog padding
Browse files Browse the repository at this point in the history
Way too small.
  • Loading branch information
stenzek committed Jan 11, 2025
1 parent 4af5e96 commit 4b0bb9f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/util/imgui_fullscreen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2521,6 +2521,7 @@ void ImGuiFullscreen::DrawInputDialog()

ImGui::PushFont(UIStyle.LargeFont);
ImGui::PushStyleVar(ImGuiStyleVar_WindowRounding, LayoutScale(10.0f));
ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, LayoutScale(20.0f, 20.0f));
ImGui::PushStyleVar(ImGuiStyleVar_FramePadding,
LayoutScale(LAYOUT_MENU_BUTTON_X_PADDING, LAYOUT_MENU_BUTTON_Y_PADDING));
ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0f);
Expand Down Expand Up @@ -2583,7 +2584,7 @@ void ImGuiFullscreen::DrawInputDialog()
GetInputDialogHelpText(s_state.fullscreen_footer_text);

ImGui::PopStyleColor(3);
ImGui::PopStyleVar(3);
ImGui::PopStyleVar(4);
ImGui::PopFont();
}

Expand Down

0 comments on commit 4b0bb9f

Please sign in to comment.