summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2025-05-15 02:13:48 -0500
committerJordan Woyak <jordan.woyak@gmail.com>2025-05-15 02:13:48 -0500
commitafb27952ee3598ba3f265158c649b5a38e18cf1c (patch)
treec20c1672cc6fb2f5bc00b6cac11d2dcb5221c122 /Source
parentc211efd84a5ec159e6cf82498cf01c0ac05b94c0 (diff)
DolphinQt: Make the Info tab first in the game properties dialog.
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/DolphinQt/Config/PropertiesDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/Config/PropertiesDialog.cpp b/Source/Core/DolphinQt/Config/PropertiesDialog.cpp
index 86be3e8c3c..d82a843285 100644
--- a/Source/Core/DolphinQt/Config/PropertiesDialog.cpp
+++ b/Source/Core/DolphinQt/Config/PropertiesDialog.cpp
@@ -65,6 +65,7 @@ PropertiesDialog::PropertiesDialog(QWidget* parent, const UICommon::GameFile& ga
const int padding_width = 120;
const int padding_height = 100;
+ tab_widget->addTab(GetWrappedWidget(info, this, padding_width, padding_height), tr("Info"));
tab_widget->addTab(GetWrappedWidget(game_config, this, padding_width, padding_height),
tr("Game Config"));
tab_widget->addTab(GetWrappedWidget(patches, this, padding_width, padding_height), tr("Patches"));
@@ -73,7 +74,6 @@ PropertiesDialog::PropertiesDialog(QWidget* parent, const UICommon::GameFile& ga
tr("Gecko Codes"));
tab_widget->addTab(GetWrappedWidget(graphics_mod_list, this, padding_width, padding_height),
tr("Graphics Mods"));
- tab_widget->addTab(GetWrappedWidget(info, this, padding_width, padding_height), tr("Info"));
if (game.GetPlatform() != DiscIO::Platform::ELFOrDOL)
{