diff options
| author | LostDragonist <lost.dragonist@gmail.com> | 2019-03-22 00:44:16 -0500 |
|---|---|---|
| committer | LostDragonist <lost.dragonist@gmail.com> | 2019-03-22 00:44:16 -0500 |
| commit | 4144684d8db4149440a4e5a007bbfb26a76f80a8 (patch) | |
| tree | ffc9f7060f45ffc8aaf1c30cffbc9e2e298ff795 /src/modlist.cpp | |
| parent | 84be4c5440ade62ab56ef761a2fe62325558dd78 (diff) | |
Don't display Nexus ID of zero
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 3247b1e8..e2398cd6 100644 --- a/src/modlist.cpp +++ b/src/modlist.cpp @@ -245,7 +245,7 @@ QVariant ModList::data(const QModelIndex &modelIndex, int role) const } } else if (column == COL_MODID) { int modID = modInfo->getNexusID(); - if (modID >= 0) { + if (modID > 0) { return modID; } else { |
