Unbound Home and End keys so they can be used when typing an update

This commit is contained in:
Anna 2010-05-19 14:36:36 -04:00
parent 5b74eed1e0
commit 2b3406378a

View File

@ -485,10 +485,6 @@ class MyTwitter():
scrolltype = gtk.SCROLL_STEP_BACKWARD
elif keyname == 'Down':
scrolltype = gtk.SCROLL_STEP_FORWARD
elif keyname == 'Home':
scrolltype = gtk.SCROLL_START
elif keyname == 'End':
scrolltype = gtk.SCROLL_END
if scrolltype:
self.get_current_pane().emit('scroll-child', scrolltype, False)