diff options
author | saturneric <[email protected]> | 2024-05-03 18:17:25 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-05-03 18:17:25 +0000 |
commit | 1d9cffa54afdca117a43465fb350ee548ec2e41f (patch) | |
tree | 4facf6641e312b39d19c1388c87eb702ea720ace /src/ui/dialog/help/AboutDialog.cpp | |
parent | Merge remote-tracking branch 'origin/main' into develop (diff) | |
download | GpgFrontend-1d9cffa54afdca117a43465fb350ee548ec2e41f.tar.gz GpgFrontend-1d9cffa54afdca117a43465fb350ee548ec2e41f.zip |
fix: discard changes but text still remains
Diffstat (limited to 'src/ui/dialog/help/AboutDialog.cpp')
-rw-r--r-- | src/ui/dialog/help/AboutDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/help/AboutDialog.cpp b/src/ui/dialog/help/AboutDialog.cpp index ddc17fe7..0735ddba 100644 --- a/src/ui/dialog/help/AboutDialog.cpp +++ b/src/ui/dialog/help/AboutDialog.cpp @@ -97,7 +97,7 @@ InfoTab::InfoTab(QWidget* parent) : QWidget(parent) { auto text = "<center><h2>" + qApp->applicationName() + "</h2></center>" + - "<center><b>" + qApp->applicationVersion() + "</b></center>" + + "<center><b>" + "v" + qApp->applicationVersion() + "</b></center>" + "<center>" + GetProjectBuildGitVersion() + "</center>" + "<br><center>" + tr("GpgFrontend is an easy-to-use, compact, cross-platform, " "and installation-free GnuPG Frontend." |