Changing the way of how formatted Notes are stored:

remove 'Markup' optional parameter from gen.lib.note.Note.get() method.


svn: r10288
This commit is contained in:
Zsolt Foldvari
2008-03-13 10:44:22 +00:00
parent 50ab0b0651
commit 2642641b84
7 changed files with 7 additions and 46 deletions

View File

@@ -659,7 +659,7 @@ class GuiNoteOption(gtk.HBox):
"""
if note:
note_id = note.get_gramps_id()
txt = " ".join(note.get(markup=False).split())
txt = " ".join(note.get().split())
if len(txt) > 35:
txt = txt[:35]+"..."
else: