String must be unicode for truncation to work for non ascii characters.

svn: r13176
This commit is contained in:
Peter Landgren 2009-09-08 10:13:48 +00:00
parent d0d2dd4a58
commit 6d14ba233c

View File

@ -384,10 +384,10 @@ class NoteEntry(ObjEntry):
def get_label(self, note): def get_label(self, note):
txt = " ".join(note.get().split()) txt = " ".join(note.get().split())
#String must be unicode for truncation to work for non ascii characters
txt = unicode(txt)
if len(txt) > 35: if len(txt) > 35:
txt = txt[:35]+"..." txt = txt[:35] + "..."
else:
txt = txt
return "%s [%s]" % (txt, note.gramps_id) return "%s [%s]" % (txt, note.gramps_id)
def call_editor(self, obj=None): def call_editor(self, obj=None):