From: Adrian Hunter Date: Mon, 20 May 2019 11:37:28 +0000 (+0300) Subject: perf scripts python: exported-sql-viewer.py: Select find text when find bar is activated X-Git-Tag: v5.4-rc1~638^2~17^2~60 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=80b3fb64a55a7e4ba1ef8f9a7e87fbe1a26dc709;p=platform%2Fkernel%2Flinux-rpi.git perf scripts python: exported-sql-viewer.py: Select find text when find bar is activated The user probably wants to replace the find text, so select the find text when the find bar is activated. That is fairly standard behaviour for search text entry. Entering text will replace the current text, but using edit keys (arrows, home, end etc) cancels the selection and enables editing. Signed-off-by: Adrian Hunter Tested-by: Arnaldo Carvalho de Melo Cc: Jiri Olsa Link: http://lkml.kernel.org/r/20190520113728.14389-23-adrian.hunter@intel.com Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/scripts/python/exported-sql-viewer.py b/tools/perf/scripts/python/exported-sql-viewer.py index 94489cf..6e7934f 100755 --- a/tools/perf/scripts/python/exported-sql-viewer.py +++ b/tools/perf/scripts/python/exported-sql-viewer.py @@ -400,6 +400,7 @@ class FindBar(): def Activate(self): self.bar.show() + self.textbox.lineEdit().selectAll() self.textbox.setFocus() def Deactivate(self):