diff options
author | saturneric <[email protected]> | 2024-03-02 18:22:27 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-03-02 18:22:27 +0000 |
commit | 3a0b2bd05af92fff313dcc6fa34fb87ac8030746 (patch) | |
tree | 420cc23dc12ca947e39906981c8814e04b51e0c4 /src/ui/dialog/help/AboutDialog.cpp | |
parent | fix: change GpgFrontend to Gpg Frontend on linux platform (diff) | |
parent | feat: add user agent header when doing http request (diff) | |
download | GpgFrontend-3a0b2bd05af92fff313dcc6fa34fb87ac8030746.tar.gz GpgFrontend-3a0b2bd05af92fff313dcc6fa34fb87ac8030746.zip |
Merge branch 'dev/2.1.2/main' into develop
Diffstat (limited to 'src/ui/dialog/help/AboutDialog.cpp')
-rw-r--r-- | src/ui/dialog/help/AboutDialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/dialog/help/AboutDialog.cpp b/src/ui/dialog/help/AboutDialog.cpp index b26d9cc2..61b01dfe 100644 --- a/src/ui/dialog/help/AboutDialog.cpp +++ b/src/ui/dialog/help/AboutDialog.cpp @@ -78,8 +78,8 @@ InfoTab::InfoTab(QWidget* parent) : QWidget(parent) { "core", "gpgme.version", QString{"2.0.0"}); GF_UI_LOG_DEBUG("got gpgme version from rt: {}", gpgme_version); - auto pixmap = QPixmap(":/icons/logo.png"); - pixmap = pixmap.scaled(200, 200); + auto pixmap = QPixmap(":/icons/gpgfrontend_logo.png"); + pixmap = pixmap.scaled(128, 128); auto text = "<center><h2>" + qApp->applicationName() + "</h2></center>" + |