diff options
author | Saturneric <[email protected]> | 2022-05-12 16:51:49 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-05-12 16:51:49 +0000 |
commit | 4c982774a72e9ffd1cf53e2010f440d51cd16ba1 (patch) | |
tree | e7ab6569492ac4cfe3f31183f8c42ed89b99ddb3 | |
parent | feat(ui): support .pgp extension (diff) | |
download | GpgFrontend-4c982774a72e9ffd1cf53e2010f440d51cd16ba1.tar.gz GpgFrontend-4c982774a72e9ffd1cf53e2010f440d51cd16ba1.zip |
fix(ui): adjuest timeout value for keyserver test
-rw-r--r-- | src/ui/settings/SettingsKeyServer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/settings/SettingsKeyServer.cpp b/src/ui/settings/SettingsKeyServer.cpp index f2eaf9a9..e80e4598 100644 --- a/src/ui/settings/SettingsKeyServer.cpp +++ b/src/ui/settings/SettingsKeyServer.cpp @@ -225,7 +225,7 @@ void KeyserverTab::slot_refresh_table() { void KeyserverTab::slot_test_listed_key_server() { auto timeout = QInputDialog::getInt(this, _("Set TCP Timeout"), tr("timeout(ms): "), - QLineEdit::Normal, 500, 2000); + QLineEdit::Normal, 800, 3000); QStringList urls; const auto row_size = ui_->keyServerListTable->rowCount(); |