mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-02 19:12:47 +02:00
Merge pull request #6957 from spycrab/qt_bold_header
Qt/GameList: Fix bold header when selecting a game
This commit is contained in:
commit
a68b8202e1
@ -91,8 +91,6 @@ void GameList::MakeListView()
|
|||||||
connect(hor_header, &QHeaderView::sectionCountChanged, this, &GameList::OnHeaderViewChanged);
|
connect(hor_header, &QHeaderView::sectionCountChanged, this, &GameList::OnHeaderViewChanged);
|
||||||
connect(hor_header, &QHeaderView::sectionMoved, this, &GameList::OnHeaderViewChanged);
|
connect(hor_header, &QHeaderView::sectionMoved, this, &GameList::OnHeaderViewChanged);
|
||||||
|
|
||||||
hor_header->setSectionsMovable(true);
|
|
||||||
|
|
||||||
if (!Settings::GetQSettings().contains(QStringLiteral("tableheader/state")))
|
if (!Settings::GetQSettings().contains(QStringLiteral("tableheader/state")))
|
||||||
m_list->sortByColumn(GameListModel::COL_TITLE, Qt::AscendingOrder);
|
m_list->sortByColumn(GameListModel::COL_TITLE, Qt::AscendingOrder);
|
||||||
|
|
||||||
@ -123,6 +121,9 @@ void GameList::MakeListView()
|
|||||||
|
|
||||||
m_list->verticalHeader()->hide();
|
m_list->verticalHeader()->hide();
|
||||||
m_list->setFrameStyle(QFrame::NoFrame);
|
m_list->setFrameStyle(QFrame::NoFrame);
|
||||||
|
|
||||||
|
hor_header->setSectionsMovable(true);
|
||||||
|
hor_header->setHighlightSections(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void GameList::MakeEmptyView()
|
void GameList::MakeEmptyView()
|
||||||
|
Loading…
Reference in New Issue
Block a user