diff options
author | Saturneric <[email protected]> | 2023-02-07 10:26:27 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2023-02-07 10:26:27 +0000 |
commit | ece58986669000baf696edafccb0197a54c0b7c1 (patch) | |
tree | c3b0f91e01603be6387f624ef01be9b05774f4b1 /src/ui/UserInterfaceUtils.cpp | |
parent | fix: solve an issue in version checking (diff) | |
download | GpgFrontend-ece58986669000baf696edafccb0197a54c0b7c1.tar.gz GpgFrontend-ece58986669000baf696edafccb0197a54c0b7c1.zip |
fix: solve bugs in subkey generation
Diffstat (limited to '')
-rw-r--r-- | src/ui/UserInterfaceUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/UserInterfaceUtils.cpp b/src/ui/UserInterfaceUtils.cpp index 72ebe6f6..7ab5469a 100644 --- a/src/ui/UserInterfaceUtils.cpp +++ b/src/ui/UserInterfaceUtils.cpp @@ -428,7 +428,7 @@ void CommonUtils::slot_popup_passphrase_input_dialog() { dialog->setInputMode(QInputDialog::TextInput); dialog->setTextEchoMode(QLineEdit::Password); dialog->setLabelText("Please Input The Password"); - dialog->resize(600, 80); + dialog->resize(500, 80); dialog->exec(); QString password = dialog->textValue(); |