diff options
author | Saturneric <[email protected]> | 2022-03-12 10:00:36 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-03-12 10:00:36 +0000 |
commit | 1755ba16fe9d5d475094fa0cde873f6d8b642549 (patch) | |
tree | d8ff7763fee7f6db013d19acc1160e9d59407b77 /src/ui/main_window/MainWindowUI.cpp | |
parent | <feat>(core, ui): Provides the ability to handle folders (diff) | |
download | GpgFrontend-1755ba16fe9d5d475094fa0cde873f6d8b642549.tar.gz GpgFrontend-1755ba16fe9d5d475094fa0cde873f6d8b642549.zip |
<refactor, fix>(core, ui): Some tweaks and fixes
Diffstat (limited to '')
-rw-r--r-- | src/ui/main_window/MainWindowUI.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ui/main_window/MainWindowUI.cpp b/src/ui/main_window/MainWindowUI.cpp index cdc1a39a..01c4bbc9 100644 --- a/src/ui/main_window/MainWindowUI.cpp +++ b/src/ui/main_window/MainWindowUI.cpp @@ -274,9 +274,9 @@ void MainWindow::create_actions() { /* Popup-Menu-Action for KeyList */ append_selected_keys_act_ = - new QAction(_("Append Public Key To Text Editor"), this); + new QAction(_("Append To Text Editor"), this); append_selected_keys_act_->setToolTip( - _("Append The Selected Keys To Text in Editor")); + _("Append The Selected Public Key To Text in Editor")); connect(append_selected_keys_act_, &QAction::triggered, this, &MainWindow::slot_append_selected_keys); @@ -324,6 +324,7 @@ void MainWindow::create_actions() { }); receive_mail_act_ = new QAction(_("Message Inbox"), this); + receive_mail_act_->setVisible(false); receive_mail_act_->setIcon(QIcon(":receive_email.png")); connect(receive_mail_act_, &QAction::triggered, this, [=]() { auto* dialog = new ReceiveMailDialog(this); |