remove unused invisible priority col from sets dialog

This commit is contained in:
Cameron McDonald 2024-08-25 14:59:34 -05:00
parent 98907a398b
commit 476eadbd58

View file

@ -56,8 +56,6 @@ QVariant SetsModel::data(const QModelIndex &index, int role) const
return set->getLongName();
case ReleaseDateCol:
return set->getReleaseDate().toString(Qt::ISODate);
case PriorityCol:
return set->getPriority();
default:
return QVariant();
}
@ -82,9 +80,6 @@ QVariant SetsModel::headerData(int section, Qt::Orientation orientation, int rol
case IsKnownCol:
return QString(
"Is known"); /* no tr() for translations needed, column is just used for sorting --> hidden */
case PriorityCol:
return QString(
"Priority"); /* no tr() for translations needed, column is just used for sorting --> hidden */
case EnabledCol:
return tr("Enabled");
case SetTypeCol: