diff options
author | saturneric <[email protected]> | 2025-02-02 17:02:44 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-02-02 17:02:44 +0000 |
commit | 1e95a70ab32fcdb8ef42e7ce8df5ba40b1f251ab (patch) | |
tree | 8c9cdb0cf18d5a81f68d26ff229a5618bfd5920d /src/ui/main_window/KeyMgmt.cpp | |
parent | fix: solve lower/upper case name conflict (diff) | |
download | GpgFrontend-1e95a70ab32fcdb8ef42e7ce8df5ba40b1f251ab.tar.gz GpgFrontend-1e95a70ab32fcdb8ef42e7ce8df5ba40b1f251ab.zip |
feat: improve KeyGenerateDialog
Diffstat (limited to 'src/ui/main_window/KeyMgmt.cpp')
-rw-r--r-- | src/ui/main_window/KeyMgmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/main_window/KeyMgmt.cpp b/src/ui/main_window/KeyMgmt.cpp index f83226ed..38a5399c 100644 --- a/src/ui/main_window/KeyMgmt.cpp +++ b/src/ui/main_window/KeyMgmt.cpp @@ -441,7 +441,7 @@ void KeyMgmt::SlotExportKeyToClipboard() { } void KeyMgmt::SlotGenerateKeyDialog() { - (new KeyGenDialog(key_list_->GetCurrentGpgContextChannel(), this))->exec(); + (new KeyGenerateDialog(key_list_->GetCurrentGpgContextChannel(), this))->exec(); this->raise(); } |