Shorten version string to fit

This commit is contained in:
Eric Kotato 2019-09-28 04:42:15 +03:00
parent 6341144e7f
commit bbc19fcb44

View file

@ -146,6 +146,6 @@ QString currentVersionText() {
} else if (AppBetaVersion) { } else if (AppBetaVersion) {
result += " beta"; result += " beta";
} }
result += qsl(" (TDesktop %1)").arg(AppVersionStr); result += qsl(" (TD %1)").arg(AppVersionStr);
return result; return result;
} }