* src/AutoComp.py (StandardCustomSelector.__init__): Compare
active_key to None. * src/gramps.glade (marriageDialog): Remove displayed strings from the Sttributes tab. * src/Marriage.py: Delegate attribute handling to ListBox. * src/ListBox.py (AttrListBox): Support both personal and family attributes. svn: r4815
This commit is contained in:
@ -142,7 +142,7 @@ class StandardCustomSelector:
|
||||
self.selector.set_text_column(1)
|
||||
else:
|
||||
self.selector = gtk.ComboBoxEntry(self.store,1)
|
||||
if self.active_key:
|
||||
if self.active_key != None:
|
||||
self.selector.set_active(self.active_index)
|
||||
|
||||
# make autocompletion work
|
||||
|
Reference in New Issue
Block a user