aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/KeyMgmt.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-12-16 18:18:38 +0000
committerSaturneric <[email protected]>2021-12-16 18:18:38 +0000
commit2874ebd5e56a7da7f7e7c96da392199b296d909a (patch)
treee6b78bcbb33282e652cd47df59987fc5932725c7 /src/ui/KeyMgmt.cpp
parentFixed Known Problem. (diff)
downloadGpgFrontend-2874ebd5e56a7da7f7e7c96da392199b296d909a.tar.gz
GpgFrontend-2874ebd5e56a7da7f7e7c96da392199b296d909a.zip
Fixed & Improve.
1. Fixed Known Issues. 2. Improve UI.
Diffstat (limited to 'src/ui/KeyMgmt.cpp')
-rwxr-xr-xsrc/ui/KeyMgmt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/KeyMgmt.cpp b/src/ui/KeyMgmt.cpp
index 88663d67..d3759e44 100755
--- a/src/ui/KeyMgmt.cpp
+++ b/src/ui/KeyMgmt.cpp
@@ -36,7 +36,7 @@
namespace GpgFrontend::UI {
KeyMgmt::KeyMgmt(QWidget* parent) : QMainWindow(parent) {
/* the list of Keys available*/
- mKeyList = new KeyList(this);
+ mKeyList = new KeyList(true, this);
mKeyList->addListGroupTab(_("All"), KeyListRow::SECRET_OR_PUBLIC_KEY);
@@ -247,7 +247,7 @@ void KeyMgmt::createMenus() {
importKeyMenu->addAction(importKeyFromFileAct);
importKeyMenu->addAction(importKeyFromClipboardAct);
importKeyMenu->addAction(importKeyFromKeyServerAct);
-
+
keyMenu->addAction(exportKeyToFileAct);
keyMenu->addAction(exportKeyToClipboardAct);
keyMenu->addAction(exportKeyAsOpenSSHFormat);