From c18eab8d6299f3a24b7a0d991c2e65a77649f879 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Fri, 11 Sep 2020 11:22:05 -0300 Subject: [PATCH] [ui] improvement -> 'name' filter now holds for 3 seconds instead of 2 before being applied --- CHANGELOG.md | 1 + bauh/view/qt/components.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63b85d57..04cfd76e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/bauh/view/qt/components.py b/bauh/view/qt/components.py index 1e827cba..75b6106e 100644 --- a/bauh/view/qt/components.py +++ b/bauh/view/qt/components.py @@ -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