From 01d4a6e6fe0bd5e891ec91e7892b4682ecfa7e50 Mon Sep 17 00:00:00 2001 From: Karthik T Date: Thu, 24 Oct 2013 01:05:38 +0800 Subject: [PATCH] Fix Keystroke lost in favorites pane issue If user is in favorites pane -> starts typing, first character is lost This is because the changeTab->focusSearchEntry->set_text("") Not sure if right way, but fixing this by setting the text to its prev value after the changeTab, works well for me --- usr/lib/linuxmint/mintMenu/plugins/applications.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usr/lib/linuxmint/mintMenu/plugins/applications.py b/usr/lib/linuxmint/mintMenu/plugins/applications.py index ae5db47..d7dac47 100755 --- a/usr/lib/linuxmint/mintMenu/plugins/applications.py +++ b/usr/lib/linuxmint/mintMenu/plugins/applications.py @@ -811,8 +811,10 @@ class pluginclass( object ): if self.donotfilterapps: widget.set_text( "" ) else: + text = widget.get_text() if self.lastActiveTab != 1: self.changeTab( 1 ) + widget.set_text( text ) text = widget.get_text() showns = False # Are any app shown? shownList = []