Fix space behavior.

This commit is contained in:
Benjamin L. Campbell 2014-06-30 11:14:38 -05:00 committed by Clement Lefebvre
parent e12dee7b01
commit 8ba93f9eef

View File

@ -906,6 +906,11 @@ class pluginclass( object ):
self.searchEntry.event( event )
return True
if event.keyval == Gdk.KEY_space:
self.searchEntry.event( event )
return True
if event.keyval == Gdk.KEY_Down and self.searchEntry.is_focus():
self.applicationsBox.get_children()[0].grab_focus()