diff options
author | saturneric <[email protected]> | 2024-02-25 11:27:57 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-02-25 11:27:57 +0000 |
commit | 94819b52a9a6b8426880f2ceb86cc6b32c518101 (patch) | |
tree | 8a742e44db4395a2a93e1d8f69349b8e8f9c38e3 /src/ui/dialog/help/AboutDialog.cpp | |
parent | fix: unify app icons (diff) | |
download | GpgFrontend-94819b52a9a6b8426880f2ceb86cc6b32c518101.tar.gz GpgFrontend-94819b52a9a6b8426880f2ceb86cc6b32c518101.zip |
fix: improve icons and logo style
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>" + |