aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/main_window/MainWindowSlotFunction.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-07-04 19:17:53 +0000
committerSaturneric <[email protected]>2021-07-04 19:17:53 +0000
commitfe2f448d517bb0f7d37c22fe99b2bd13ef1a61c3 (patch)
tree952ad3bc8cb5f76c0d1e02792a62a3825ef6fdf0 /src/ui/main_window/MainWindowSlotFunction.cpp
parentAdjust and improve the basic settings page (diff)
parentUpdate Github Action Files. (diff)
downloadGpgFrontend-fe2f448d517bb0f7d37c22fe99b2bd13ef1a61c3.tar.gz
GpgFrontend-fe2f448d517bb0f7d37c22fe99b2bd13ef1a61c3.zip
Merge branch 'main' into develop
Diffstat (limited to 'src/ui/main_window/MainWindowSlotFunction.cpp')
-rw-r--r--src/ui/main_window/MainWindowSlotFunction.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ui/main_window/MainWindowSlotFunction.cpp b/src/ui/main_window/MainWindowSlotFunction.cpp
index dcc31527..f820a4e6 100644
--- a/src/ui/main_window/MainWindowSlotFunction.cpp
+++ b/src/ui/main_window/MainWindowSlotFunction.cpp
@@ -352,7 +352,9 @@ void MainWindow::refreshKeysFromKeyserver() {
void MainWindow::uploadKeyToServer() {
QVector<GpgKey> keys;
keys.append(mKeyList->getSelectedKey());
- auto *dialog = new KeyUploadDialog(mCtx, keys);
+ auto *dialog = new KeyUploadDialog(mCtx, keys, this);
+ dialog->show();
+ dialog->slotUpload();
}
void MainWindow::slotFileEncrypt() {