mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Fixed issue, everything except the main feature work now
This commit is contained in:
parent
5437a6dd4d
commit
125af43d90
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ NotificationModel::NotificationModel(QObject *parent)
|
|||
QString NotificationModel::getItemFromRow(std::vector<QStandardItem *> &row,
|
||||
const QString &original)
|
||||
{
|
||||
return QString(row[0]->data().toString());
|
||||
return QString(row[0]->data(Qt::DisplayRole).toString());
|
||||
}
|
||||
|
||||
void NotificationModel::getRowFromItem(const QString &item,
|
||||
|
|
Loading…
Reference in a new issue