diff options
author | merry <git@mary.rs> | 2022-04-02 18:19:25 +0200 |
---|---|---|
committer | merry <git@mary.rs> | 2022-04-02 18:19:25 +0200 |
commit | f4004b12713cd49118f610792a09432e81996295 (patch) | |
tree | eb213e58b58a1d90f4d96b55122f9b9dc58ed666 | |
parent | configure_per_game_addons: Stretch first column and not last (diff) | |
download | yuzu-f4004b12713cd49118f610792a09432e81996295.tar yuzu-f4004b12713cd49118f610792a09432e81996295.tar.gz yuzu-f4004b12713cd49118f610792a09432e81996295.tar.bz2 yuzu-f4004b12713cd49118f610792a09432e81996295.tar.lz yuzu-f4004b12713cd49118f610792a09432e81996295.tar.xz yuzu-f4004b12713cd49118f610792a09432e81996295.tar.zst yuzu-f4004b12713cd49118f610792a09432e81996295.zip |
-rw-r--r-- | src/yuzu/configuration/configure_per_game_addons.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu/configuration/configure_per_game_addons.cpp b/src/yuzu/configuration/configure_per_game_addons.cpp index e8428bbd2..7893a85bb 100644 --- a/src/yuzu/configuration/configure_per_game_addons.cpp +++ b/src/yuzu/configuration/configure_per_game_addons.cpp @@ -49,6 +49,7 @@ ConfigurePerGameAddons::ConfigurePerGameAddons(Core::System& system_, QWidget* p tree_view->header()->setStretchLastSection(false); tree_view->header()->setSectionResizeMode(0, QHeaderView::ResizeMode::Stretch); + tree_view->header()->setMinimumSectionSize(150); // We must register all custom types with the Qt Automoc system so that we are able to use it // with signals/slots. In this case, QList falls under the umbrella of custom types. |