* src/Report.py (GrampsStyleComboBox): Use non-translated style name.

svn: r4423
This commit is contained in:
Alex Roitman 2005-04-25 03:33:00 +00:00
parent 1a3160380d
commit 5a1fb9bddf
2 changed files with 4 additions and 0 deletions

View File

@ -23,6 +23,8 @@
* src/EditSource.py (button_press): Proper invokation of editors.
* src/ImageSelect.py: Remove workarounds for window management.
* src/Report.py (GrampsStyleComboBox): Use non-translated style name.
2005-04-23 Julio Sanchez <jsanchez@users.sourceforge.net>
* src/po/es.po: Nearly complete update, but completely untested

View File

@ -169,6 +169,8 @@ class GrampsStyleComboBox(gtk.ComboBox):
if active < 0:
return None
key = self.store[active][0]
if key == _('default'):
key = "default"
return (key,self.style_map[key])
#-------------------------------------------------------------------------