diff --git a/frontend/model/best-list-model.cpp b/frontend/model/best-list-model.cpp index 66ba7e3..fe3c8ab 100644 --- a/frontend/model/best-list-model.cpp +++ b/frontend/model/best-list-model.cpp @@ -62,7 +62,7 @@ QVariant BestListModel::data(const QModelIndex &index, int role) const return m_items.at(index.row()).name; } case Qt::ToolTipRole: { - return m_items.at(index.row()).name; + return m_items.at(index.row()).toolTip; } default: return QVariant();