1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-08 07:16:33 -05:00

Merge pull request #2587 from yuriks/status-bar

Replace built-in Profiler with indicators in status bar
This commit is contained in:
Yuri Kunde Schlesner
2017-02-26 17:51:15 -08:00
committed by GitHub
28 changed files with 321 additions and 449 deletions

View File

@@ -45,6 +45,7 @@ GameList::GameList(QWidget* parent) : QWidget{parent} {
// with signals/slots. In this case, QList falls under the umbrells of custom types.
qRegisterMetaType<QList<QStandardItem*>>("QList<QStandardItem*>");
layout->setContentsMargins(0, 0, 0, 0);
layout->addWidget(tree_view);
setLayout(layout);
}