[ui] improvement -> 'name' filter now holds for 3 seconds instead of 2 before being applied

This commit is contained in:
Vinicius Moreira
2020-09-11 11:22:05 -03:00
parent 293d2a5fb0
commit c18eab8d62
2 changed files with 2 additions and 1 deletions

View File

@@ -89,6 +89,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- UI
- faster initialization dialog: improved the way it checks for finished tasks
- 'name' filter now holds for 3 seconds instead of 2 before being applied
- minor improvements
### Fixes

View File

@@ -659,7 +659,7 @@ class InputFilter(QLineEdit):
if self.typing.isActive():
return
self.typing.start(2000)
self.typing.start(3000)
def get_text(self):
return self.last_text