aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/main_window/MainWindowUI.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-01-16 18:03:08 +0000
committersaturneric <[email protected]>2024-01-16 18:03:08 +0000
commit42fa750ae02d86e619114b2e57a0168f6bda60aa (patch)
tree2b402476f1de565e7279430a53af246fbfb2a797 /src/ui/main_window/MainWindowUI.cpp
parentfix: add the missing icon to gnupg info menu action (diff)
downloadGpgFrontend-42fa750ae02d86e619114b2e57a0168f6bda60aa.tar.gz
GpgFrontend-42fa750ae02d86e619114b2e57a0168f6bda60aa.zip
fix: solve the gnupg tab options info not shown issue
Diffstat (limited to 'src/ui/main_window/MainWindowUI.cpp')
-rw-r--r--src/ui/main_window/MainWindowUI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/main_window/MainWindowUI.cpp b/src/ui/main_window/MainWindowUI.cpp
index 110776cd..662c673f 100644
--- a/src/ui/main_window/MainWindowUI.cpp
+++ b/src/ui/main_window/MainWindowUI.cpp
@@ -415,7 +415,7 @@ void MainWindow::create_actions() {
[=]() { new AboutDialog(0, this); });
gnupg_act_ = new QAction(tr("GnuPG"), this);
- gnupg_act_->setIcon(QIcon(":/icons/:help.png"));
+ gnupg_act_->setIcon(QIcon(":/icons/help.png"));
gnupg_act_->setToolTip(tr("Information about Gnupg"));
connect(gnupg_act_, &QAction::triggered, this,
[=]() { new AboutDialog(1, this); });