From ad4c7142a16f67c152977919058d2c61b88a8ff8 Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Tue, 20 Aug 2019 13:21:41 -0230 Subject: [PATCH] Make launcher minimum size in UI match what is used in the actual code. --- src/gui/UIDialog.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/UIDialog.cxx b/src/gui/UIDialog.cxx index d420cfd23..4ca332f1d 100644 --- a/src/gui/UIDialog.cxx +++ b/src/gui/UIDialog.cxx @@ -208,7 +208,7 @@ UIDialog::UIDialog(OSystem& osystem, DialogContainer& parent, ypos += lineHeight + V_GAP; // Launcher font - pwidth = font.getStringWidth("2x (1000x720)"); + pwidth = font.getStringWidth("2x (1000x760)"); items.clear(); VarList::push_back(items, "Small", "small"); VarList::push_back(items, "Medium", "medium"); @@ -223,7 +223,7 @@ UIDialog::UIDialog(OSystem& osystem, DialogContainer& parent, items.clear(); VarList::push_back(items, "Off", "0"); VarList::push_back(items, "1x (640x480) ", "1"); - VarList::push_back(items, "2x (1000x720)", "2"); + VarList::push_back(items, "2x (1000x760)", "2"); myRomViewerPopup = new PopUpWidget(myTab, font, xpos, ypos + 1, pwidth, lineHeight, items, "ROM info viewer ", lwidth, kRomViewer); @@ -556,7 +556,7 @@ void UIDialog::handleRomViewer() if(myLauncherWidthSlider->getValue() >= 1000 && myLauncherHeightSlider->getValue() >= 760) { - VarList::push_back(items, "2x (1000x720)", "2"); + VarList::push_back(items, "2x (1000x760)", "2"); } else if (size == 2) {