commit 22697928ae7e63ae8d69b0dd08f3c5f884142ead
parent 2a27816329f7a925396bc3543249509be3387db4
Author: Eric Davis <edavis@insanum.com>
Date: Wed, 9 Jul 2014 13:28:45 -0700
added horizontal divider to denote the end of the note in the note view
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/view_note.py b/view_note.py
@@ -22,6 +22,7 @@ def get_note_content_as_list(self):
urwid.AttrMap(urwid.Text(l.replace('\t', ' ' * self.tabstop)),
'note_content',
'note_content_focus'))
+ lines.append(urwid.AttrMap(urwid.Divider(u'-'), 'default'))
return lines
def update_note(self, key):