Modified fix for #1957 non-acsii columns

This commit is contained in:
Calum Lind 2012-03-10 22:13:52 +00:00
commit 9ecc9ab7ad

View file

@ -345,7 +345,10 @@ class ListView:
name = widget.get_child().get_text()
# Set the column's visibility based on the widgets active state
self.columns[name].column.set_visible(widget.get_active())
try:
self.columns[name].column.set_visible(widget.get_active())
except KeyError:
self.columns[unicode(name)].column.set_visible(widget.get_active())
return
def on_treeview_header_right_clicked(self, column, event):