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/MainWindow.cpp | |
parent | Merge branch 'develop' into main (diff) | |
download | GpgFrontend-de7273d31dd162a7d6e5960cc0037cc2faa50e2e.tar.gz GpgFrontend-de7273d31dd162a7d6e5960cc0037cc2faa50e2e.zip |
UI Improvement;
Update Documents;
Diffstat (limited to 'src/MainWindow.cpp')
-rw-r--r-- | src/MainWindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 35890a47..eeedad7c 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -29,7 +29,7 @@ MainWindow::MainWindow() settings(RESOURCE_DIR(appPath) + "/conf/gpgfrontend.ini", QSettings::IniFormat) { - auto waitingDialog = new WaitingDialog("Loading", this); + auto waitingDialog = new WaitingDialog("Loading Gnupg", this); auto ctx_thread = QThread::create([&]() { mCtx = new GpgME::GpgContext(); }); @@ -100,6 +100,7 @@ MainWindow::MainWindow() mKeyList->addMenuAction(appendSelectedKeysAct); mKeyList->addMenuAction(copyMailAddressToClipboardAct); mKeyList->addMenuAction(showKeyDetailsAct); + mKeyList->addSeparator(); mKeyList->addMenuAction(refreshKeysFromKeyserverAct); mKeyList->addMenuAction(uploadKeyToServerAct); |