From 5f073d24baae2ffd8f41b8e0b3eb161711ed92fc Mon Sep 17 00:00:00 2001 From: TotalCaesar659 <14265316+TotalCaesar659@users.noreply.github.com> Date: Fri, 3 Jul 2020 21:03:14 +0300 Subject: [PATCH] Fix radio button in "Window size" menu --- Qt/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Qt/mainwindow.cpp b/Qt/mainwindow.cpp index b1c303f434..544eaa93ed 100644 --- a/Qt/mainwindow.cpp +++ b/Qt/mainwindow.cpp @@ -602,7 +602,7 @@ void MainWindow::createMenus() MenuTree* windowMenu = new MenuTree(this, gameSettingsMenu, QT_TR_NOOP("&Window size")); windowGroup = new MenuActionGroup(this, windowMenu, SLOT(windowGroup_triggered(QAction *)), QStringList() << "&1x" << "&2x" << "&3x" << "&4x" << "&5x" << "&6x" << "&7x" << "&8x" << "&9x" << "1&0x", - QList() << 1 << 2 << 3 << 4 << 5 << 6 << 7 << 8 << 9 << 10); + QList() << 0 << 1 << 2 << 3 << 4 << 5 << 6 << 7 << 8 << 9); MenuTree* renderingModeMenu = new MenuTree(this, gameSettingsMenu, QT_TR_NOOP("Rendering m&ode")); renderingModeGroup = new MenuActionGroup(this, renderingModeMenu, SLOT(renderingModeGroup_triggered(QAction *)),