fix display of non-latin tags

This commit is contained in:
Damien Elmes 2013-10-08 07:42:06 +09:00
parent bc96a00fd2
commit d503b62cd1

View file

@ -236,7 +236,7 @@ class DataModel(QAbstractTableModel):
elif type == "cardLapses":
return str(c.lapses)
elif type == "noteTags":
return str(" ".join(c.note().tags))
return " ".join(c.note().tags)
elif type == "note":
return c.model()['name']
elif type == "cardIvl":