diff options
author | Saturneric <[email protected]> | 2021-12-07 06:59:55 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-12-07 07:03:30 +0000 |
commit | 71fe17c0d2f4a2105c622763be7e3b2979574ab4 (patch) | |
tree | 1d041d47971af43d2e803f6537bfe2d5d06e1d23 /src/ui/help/AboutDialog.cpp | |
parent | Support Windows Build (diff) | |
download | GpgFrontend-71fe17c0d2f4a2105c622763be7e3b2979574ab4.tar.gz GpgFrontend-71fe17c0d2f4a2105c622763be7e3b2979574ab4.zip |
Fix bugs in macOS.
Diffstat (limited to 'src/ui/help/AboutDialog.cpp')
-rw-r--r-- | src/ui/help/AboutDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/help/AboutDialog.cpp b/src/ui/help/AboutDialog.cpp index 1dd06933..93e7ccb3 100644 --- a/src/ui/help/AboutDialog.cpp +++ b/src/ui/help/AboutDialog.cpp @@ -218,7 +218,7 @@ void UpdateTab::slotShowVersionStatus(const QString& current, QString(_("Latest Version From Github")) + ": " + server + "</b></center>"); - if (true || current < server) { + if (current < server) { upgradeLabel->show(); } } |