# HG changeset patch # User Björn Ricks # Date 1354805458 -3600 # Node ID 75fef53ebc360f6966376ecd61222bb64b1f8658 # Parent be9acb00cd976cb5a24d7a2d11daa1ada4412eba Don't wrap the project description to the next line Instead of displaying the project discription on the next line in the project list clip it. diff -r be9acb00cd97 -r 75fef53ebc36 getan/view.py --- a/getan/view.py Thu Dec 06 15:44:04 2012 +0100 +++ b/getan/view.py Thu Dec 06 15:50:58 2012 +0100 @@ -154,7 +154,7 @@ description = urwid.Text([' ' * self.indent, ('project_key', self.item.key), (' '), - (proj_desc)]) + (proj_desc)], wrap="clip") if self._get_time(): time = urwid.Text('%s (%s)' % (self.mode[1], time_str)) else: