* src/EditPerson.py (EditPerson.__init__): use AutoCombo for name type

* src/edit_person.glade: allow a name type that is not in the list

* src/ImageSelect.py: make sure that description doesn't exceed the image
size
* src/MediaView.py: mark <local copy> for translation
* src/gramps.glade: eliminate fixed size for side panel, helps with translations.


svn: r2593
This commit is contained in:
Don Allingham
2004-01-07 04:58:51 +00:00
parent 55aebab241
commit 1424ea9e65
2 changed files with 2 additions and 3 deletions

View File

@@ -284,8 +284,7 @@ class EditPerson:
types = const.NameTypesMap.keys()
types.sort()
self.ntype_field.set_popdown_strings(types)
self.autotype = AutoComp.AutoEntry(self.ntype_field.entry,types)
self.autotype = AutoComp.AutoCombo(self.ntype_field,types)
self.write_primary_name()
if person.getGender() == RelLib.Person.male: