diff options
author | Saturneric <[email protected]> | 2021-07-07 17:23:28 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-07-07 17:23:28 +0000 |
commit | de7273d31dd162a7d6e5960cc0037cc2faa50e2e (patch) | |
tree | 653bec9b699f982c8498e1c153aa946b8d9fe173 /src/ui/main_window/MainWindowUI.cpp | |
parent | Merge branch 'develop' into main (diff) | |
download | GpgFrontend-de7273d31dd162a7d6e5960cc0037cc2faa50e2e.tar.gz GpgFrontend-de7273d31dd162a7d6e5960cc0037cc2faa50e2e.zip |
UI Improvement;
Update Documents;
Diffstat (limited to 'src/ui/main_window/MainWindowUI.cpp')
-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 233a0927..01c9fdde 100644 --- a/src/ui/main_window/MainWindowUI.cpp +++ b/src/ui/main_window/MainWindowUI.cpp @@ -231,8 +231,8 @@ void MainWindow::createActions() { appendSelectedKeysAct->setToolTip(tr("Append The Selected Keys To Text in Editor")); connect(appendSelectedKeysAct, SIGNAL(triggered()), this, SLOT(slotAppendSelectedKeys())); - copyMailAddressToClipboardAct = new QAction(tr("Copy EMail-address"), this); - copyMailAddressToClipboardAct->setToolTip(tr("Copy selected EMailaddress to clipboard")); + copyMailAddressToClipboardAct = new QAction(tr("Copy Email"), this); + copyMailAddressToClipboardAct->setToolTip(tr("Copy selected Email to clipboard")); connect(copyMailAddressToClipboardAct, SIGNAL(triggered()), this, SLOT(slotCopyMailAddressToClipboard())); // TODO: find central place for shared actions, to avoid code-duplication with keymgmt.cpp @@ -247,6 +247,7 @@ void MainWindow::createActions() { uploadKeyToServerAct = new QAction(tr("Upload Public Key(s) To Server"), this); uploadKeyToServerAct->setToolTip(tr("Upload The Selected Public Keys To Server")); connect(uploadKeyToServerAct, SIGNAL(triggered()), this, SLOT(uploadKeyToServer())); + /* Key-Shortcuts for Tab-Switchung-Action */ switchTabUpAct = new QAction(this); |