Merge pull request #13661 from jordan-woyak/info-first

DolphinQt: Make the Info tab first in the game properties dialog.
This commit is contained in:
Admiral H. Curtiss 2025-05-21 20:43:51 +02:00 committed by GitHub
commit f90508ff99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)
{