Fixed spouse selection when family changes

svn: r1643
This commit is contained in:
Don Allingham
2003-06-03 02:54:56 +00:00
parent 21cabaac33
commit 5d2f999431
12 changed files with 401 additions and 62 deletions

View File

@ -83,8 +83,12 @@ class EventEditor:
self.window = self.top.get_widget("event_edit")
title_label = self.top.get_widget('title')
Utils.set_titles(self.window,title_label,
_('Event Editor for %s') % name,
if name == ", ":
etitle = _('Event Editor')
else:
etitle = _('Event Editor for %s') % name
Utils.set_titles(self.window,title_label, etitle,
_('Event Editor'))
self.name_field = self.top.get_widget("eventName")