2007-10-19 Gary Burton <gary.burton@zen.co.uk>

* src/DisplayTabs/_EmbeddedList.py:
	* src/DisplayTabs/_ButtonTab.py:
	ENTER is edit on embedded lists, issue 


svn: r9214
This commit is contained in:
Benny Malengier
2007-10-19 20:52:02 +00:00
parent addfde0e5f
commit 0d285b9bb4
3 changed files with 21 additions and 0 deletions

@@ -43,6 +43,9 @@ from GrampsWidgets import SimpleButton
from _GrampsTab import GrampsTab
import Errors
_KP_ENTER = gtk.gdk.keyval_from_name("KP_Enter")
_RETURN = gtk.gdk.keyval_from_name("Return")
#-------------------------------------------------------------------------
#
# Classes
@@ -164,6 +167,18 @@ class ButtonTab(GrampsTab):
except Errors.WindowActiveError:
pass
def key_pressed(self, obj, event):
"""
Handles the return key being pressed on list. If the key is pressed,
the Edit button handler is called
"""
if event.type == gtk.gdk.KEY_PRESS and \
event.keyval in (_RETURN, _KP_ENTER):
try:
self.edit_button_clicked(obj)
except Errors.WindowActiveError:
pass
def add_button_clicked(self, obj):
"""
Function called with the Add button is clicked. This function