String must be unicode for truncation to work for non ascii characters.
svn: r13176
This commit is contained in:
parent
d0d2dd4a58
commit
6d14ba233c
@ -384,10 +384,10 @@ class NoteEntry(ObjEntry):
|
||||
|
||||
def get_label(self, note):
|
||||
txt = " ".join(note.get().split())
|
||||
#String must be unicode for truncation to work for non ascii characters
|
||||
txt = unicode(txt)
|
||||
if len(txt) > 35:
|
||||
txt = txt[:35]+"..."
|
||||
else:
|
||||
txt = txt
|
||||
txt = txt[:35] + "..."
|
||||
return "%s [%s]" % (txt, note.gramps_id)
|
||||
|
||||
def call_editor(self, obj=None):
|
||||
|
Loading…
Reference in New Issue
Block a user