Fix space behavior.

This commit is contained in:
Benjamin L. Campbell 2014-06-30 11:14:38 -05:00
parent 0424cf5e10
commit d384a6278c

View File

@ -902,6 +902,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()