solutions view: show the comment as tooltip

Makes much more sense than the internal id.
This commit is contained in:
v4hn 2020-04-15 22:23:10 +02:00
parent 853e7324e9
commit 7d510c79d3

View File

@ -509,9 +509,11 @@ QVariant RemoteSolutionModel::data(const QModelIndex& index, int role) const {
switch (role) {
case Qt::UserRole:
case Qt::ToolTipRole:
return item.id;
case Qt::ToolTipRole:
return item.comment;
case Qt::DisplayRole:
switch (index.column()) {
case 0: