瀏覽代碼

[game_list] Correct light theme loading (#6408)

Correct light theme loading

The setLayout call in game list instantiation will call resizing signals with default values in light theme, which was then being erroneously saved. setLayout doesn't seem to call resizing for any other theme, so I'm not sure why that happens.
Maide 5 年之前
父節點
當前提交
cb5fe12ee1
共有 1 個文件被更改,包括 1 次插入5 次删除
  1. 1 5
      src/yuzu/game_list.cpp

+ 1 - 5
src/yuzu/game_list.cpp

@@ -341,11 +341,7 @@ GameList::GameList(FileSys::VirtualFilesystem vfs, FileSys::ManualContentProvide
     connect(tree_view, &QTreeView::customContextMenuRequested, this, &GameList::PopupContextMenu);
     connect(tree_view, &QTreeView::expanded, this, &GameList::OnItemExpanded);
     connect(tree_view, &QTreeView::collapsed, this, &GameList::OnItemExpanded);
-    connect(tree_view->header(), &QHeaderView::sectionResized, this,
-            &GameList::SaveInterfaceLayout);
-    connect(tree_view->header(), &QHeaderView::sectionMoved, this, &GameList::SaveInterfaceLayout);
-    connect(tree_view->header(), &QHeaderView::sortIndicatorChanged, this,
-            &GameList::SaveInterfaceLayout);
+
     // 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 umbrells of custom types.
     qRegisterMetaType<QList<QStandardItem*>>("QList<QStandardItem*>");