summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Morph2022-04-02 15:35:26 -0400
committerGravatar GitHub2022-04-02 15:35:26 -0400
commit0bcbe3a7038172580467f7861cef1c0cd77ebf47 (patch)
treed1df7f31e59e41513fdaef3c6921baf4a4d30d3c
parentMerge pull request #8142 from Tachi107/typos (diff)
parentconfigure_per_game_addons: Set tree view minimum section size to 150px (diff)
downloadyuzu-0bcbe3a7038172580467f7861cef1c0cd77ebf47.tar.gz
yuzu-0bcbe3a7038172580467f7861cef1c0cd77ebf47.tar.xz
yuzu-0bcbe3a7038172580467f7861cef1c0cd77ebf47.zip
Merge pull request #8140 from merryhime/per-game-addon-columns
configure_per_game_addons: Stretch first column and not last
-rw-r--r--src/yuzu/configuration/configure_per_game_addons.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_per_game_addons.cpp b/src/yuzu/configuration/configure_per_game_addons.cpp
index 21e51d749..7893a85bb 100644
--- a/src/yuzu/configuration/configure_per_game_addons.cpp
+++ b/src/yuzu/configuration/configure_per_game_addons.cpp
@@ -47,6 +47,10 @@ ConfigurePerGameAddons::ConfigurePerGameAddons(Core::System& system_, QWidget* p
47 item_model->setHeaderData(0, Qt::Horizontal, tr("Patch Name")); 47 item_model->setHeaderData(0, Qt::Horizontal, tr("Patch Name"));
48 item_model->setHeaderData(1, Qt::Horizontal, tr("Version")); 48 item_model->setHeaderData(1, Qt::Horizontal, tr("Version"));
49 49
50 tree_view->header()->setStretchLastSection(false);
51 tree_view->header()->setSectionResizeMode(0, QHeaderView::ResizeMode::Stretch);
52 tree_view->header()->setMinimumSectionSize(150);
53
50 // We must register all custom types with the Qt Automoc system so that we are able to use it 54 // We must register all custom types with the Qt Automoc system so that we are able to use it
51 // with signals/slots. In this case, QList falls under the umbrella of custom types. 55 // with signals/slots. In this case, QList falls under the umbrella of custom types.
52 qRegisterMetaType<QList<QStandardItem*>>("QList<QStandardItem*>"); 56 qRegisterMetaType<QList<QStandardItem*>>("QList<QStandardItem*>");
@@ -138,5 +142,5 @@ void ConfigurePerGameAddons::LoadConfiguration() {
138 item_model->appendRow(list_items.back()); 142 item_model->appendRow(list_items.back());
139 } 143 }
140 144
141 tree_view->setColumnWidth(0, 5 * tree_view->width() / 16); 145 tree_view->resizeColumnToContents(1);
142} 146}