Qt: Supported Protocols search - increase debounce timeout

Increase the Qtimer value added in !3325 to allow human typing speed.
See !3328 for typing speed math.
This commit is contained in:
Chuck Craft 2022-03-26 19:00:26 -05:00 committed by Roland Knall
parent e12954a637
commit f99b056025
1 changed files with 1 additions and 1 deletions

View File

@ -92,5 +92,5 @@ void SupportedProtocolsDialog::on_searchLineEdit_textChanged(const QString &sear
* the countdown.
*/
searchLineEditText = search_re;
searchLineEditTimer->start(200);
searchLineEditTimer->start(1000);
}