* src/GenericFilter.py: fix unicode problem with menu store
svn: r5115
This commit is contained in:
parent
a51b4cdb9b
commit
f8710bae70
@ -1,3 +1,6 @@
|
||||
2005-08-19 Don Allingham <don@gramps-project.org>
|
||||
* src/GenericFilter.py: fix unicode problem with menu store
|
||||
|
||||
2005-08-18 Don Allingham <don@gramps-project.org>
|
||||
* src/plugins/NavWebPage.py: code clean up
|
||||
* src/AddSpouse.py: remove unnecessary commit via add_family
|
||||
|
@ -2381,7 +2381,7 @@ class GrampsFilterComboBox(gtk.ComboBox):
|
||||
active = self.get_active()
|
||||
if active < 0:
|
||||
return None
|
||||
key = self.store[active][0]
|
||||
key = unicode(self.store[active][0])
|
||||
return self.map[key]
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user