diff options
author | saturneric <[email protected]> | 2024-05-03 15:18:03 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-05-03 15:18:03 +0000 |
commit | 15901a9e5eb47f64390d70d7bca26f2b7ffd5646 (patch) | |
tree | 23638209a333ec64c89cc2e53fe09eb1bcfa89ee /src/ui/main_window/KeyMgmt.cpp | |
parent | feat: add option to close all gnupg daemon at close (diff) | |
download | GpgFrontend-15901a9e5eb47f64390d70d7bca26f2b7ffd5646.tar.gz GpgFrontend-15901a9e5eb47f64390d70d7bca26f2b7ffd5646.zip |
fix: set min size of key mnt and another main window
Diffstat (limited to '')
-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 96df89d1..af9a6b31 100644 --- a/src/ui/main_window/KeyMgmt.cpp +++ b/src/ui/main_window/KeyMgmt.cpp @@ -121,7 +121,7 @@ KeyMgmt::KeyMgmt(QWidget* parent) this->statusBar()->show(); setWindowTitle(tr("KeyPair Management")); - setMinimumSize(QSize(600, 400)); + setMinimumSize(QSize(640, 480)); key_list_->AddMenuAction(generate_subkey_act_); key_list_->AddMenuAction(delete_selected_keys_act_); |