mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-18 17:34:52 +00:00
Fix list sorting for some categories (#1242)
* fix list sorting for serial, firmware version, and game size * bad apple!! * qol
This commit is contained in:
parent
a5968b630d
commit
2b8c2ce423
2 changed files with 18 additions and 7 deletions
|
@ -102,7 +102,9 @@ void GameGridFrame::PopulateGameGrid(QVector<GameInfo> m_games_search, bool from
|
|||
|
||||
name_label->setGraphicsEffect(shadowEffect);
|
||||
widget->setLayout(layout);
|
||||
QString tooltipText = QString::fromStdString(m_games_[gameCounter].name);
|
||||
QString tooltipText = QString::fromStdString(m_games_[gameCounter].name + " (" +
|
||||
m_games_[gameCounter].version + ", " +
|
||||
m_games_[gameCounter].region + ")");
|
||||
widget->setToolTip(tooltipText);
|
||||
QString tooltipStyle = QString("QToolTip {"
|
||||
"background-color: #ffffff;"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue