summaryrefslogtreecommitdiff
path: root/src/modlist.cpp
diff options
context:
space:
mode:
authorLostDragonist <lost.dragonist@gmail.com>2019-01-30 22:16:38 -0600
committerLostDragonist <lost.dragonist@gmail.com>2019-01-30 22:16:38 -0600
commit0cac03cdf6cbfb7634a5f3875814b4c1aabe8714 (patch)
tree6a08dbaab52d44a27e9d85954a016c528feaca71 /src/modlist.cpp
parent46e2eac1ca65771bcb3bdec3a55038cd3a71e71c (diff)
Always display at least 3 segments of version info for MO itself
Diffstat (limited to 'src/modlist.cpp')
-rw-r--r--src/modlist.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modlist.cpp b/src/modlist.cpp
index 224818c8..62c186a4 100644
--- a/src/modlist.cpp
+++ b/src/modlist.cpp
@@ -449,7 +449,7 @@ QVariant ModList::data(const QModelIndex &modelIndex, int role) const
return QString();
}
} else if (column == COL_VERSION) {
- QString text = tr("installed version: \"%1\", newest version: \"%2\"").arg(modInfo->getVersion().displayString()).arg(modInfo->getNewestVersion().displayString());
+ QString text = tr("installed version: \"%1\", newest version: \"%2\"").arg(modInfo->getVersion().displayString(3)).arg(modInfo->getNewestVersion().displayString(3));
if (modInfo->downgradeAvailable()) {
text += "<br>" + tr("The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn "
"(i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. "