mirror of https://github.com/PCSX2/pcsx2.git
Qt/Cheats: Add tooltip to cheat descriptions
This commit is contained in:
parent
8c1c4df10d
commit
4f561aa9e9
|
@ -283,6 +283,7 @@ QList<QStandardItem*> GameCheatSettingsWidget::populateTreeViewRow(const Patch::
|
|||
|
||||
QStandardItem* authorItem = new QStandardItem(QString::fromStdString(pi.author));
|
||||
QStandardItem* descriptionItem = new QStandardItem(QString::fromStdString(pi.description));
|
||||
descriptionItem->setToolTip(QString::fromStdString(pi.description));
|
||||
|
||||
items.push_back(nameItem);
|
||||
items.push_back(authorItem);
|
||||
|
|
Loading…
Reference in New Issue