Qt/Cheats: Add tooltip to cheat descriptions

This commit is contained in:
KamFretoZ 2025-04-07 21:38:40 +07:00 committed by lightningterror
parent 8c1c4df10d
commit 4f561aa9e9
1 changed files with 1 additions and 0 deletions

View File

@ -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);