early-access version 1749
This commit is contained in:
parent
c24fe8f34a
commit
1e04089bd7
2 changed files with 2 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
|||
yuzu emulator early access
|
||||
=============
|
||||
|
||||
This is the source code for early-access 1748.
|
||||
This is the source code for early-access 1749.
|
||||
|
||||
## Legal Notice
|
||||
|
||||
|
|
|
@ -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*>");
|
||||
|
|
Loading…
Reference in a new issue