svn: r8064

This commit is contained in:
Don Allingham
2007-02-07 02:31:46 +00:00
parent a4a831f880
commit 77ae228939
2 changed files with 7 additions and 3 deletions

View File

@@ -41,6 +41,7 @@ import gtk
#-------------------------------------------------------------------------
from GrampsWidgets import SimpleButton
from _GrampsTab import GrampsTab
import Errors
#-------------------------------------------------------------------------
#
@@ -124,7 +125,10 @@ class ButtonTab(GrampsTab):
the Edit button handler is called
"""
if event.type == gtk.gdk._2BUTTON_PRESS and event.button == 1:
self.edit_button_clicked(obj)
try:
self.edit_button_clicked(obj)
except Errors.WindowActiveError:
pass
def add_button_clicked(self, obj):
"""