diff options
| author | Mikaël Capelle <capelle.mikael@gmail.com> | 2021-01-21 19:21:07 +0100 |
|---|---|---|
| committer | Mikaël Capelle <capelle.mikael@gmail.com> | 2021-01-21 19:21:07 +0100 |
| commit | ffb820c701617721b82515be330a3f604b26dd7b (patch) | |
| tree | 663a9607138445e2daf9bb49ebbd12e9386171e6 /src/modlist.cpp | |
| parent | 0803920486ff62cccd79374b9b68084b880f010c (diff) | |
Use isFixedPriority() when appropriate.
Diffstat (limited to 'src/modlist.cpp')
| -rw-r--r-- | src/modlist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modlist.cpp b/src/modlist.cpp index c82aa802..f83acc9c 100644 --- a/src/modlist.cpp +++ b/src/modlist.cpp @@ -211,7 +211,7 @@ QVariant ModList::data(const QModelIndex &modelIndex, int role) const return version; } else if (column == COL_PRIORITY) { - if (modInfo->isBackup() || modInfo->isOverwrite()) { + if (modInfo->isFixedPriority()) { return QVariant(); // hide priority for mods where it's fixed } else { |
