From 732ad55c528feb2b3fb95c9ae34bddcfe33f5ced Mon Sep 17 00:00:00 2001 From: Tom Van Braeckel Date: Sun, 21 Dec 2014 17:41:22 +0100 Subject: [PATCH] wicd-curses: fix the "About" window The height was not enough to show all authors (David Paleino was missing). I removed the (invisible) horizontal line as well for asthetic reasons. --- curses/wicd-curses.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/curses/wicd-curses.py b/curses/wicd-curses.py index e730649..a12eca5 100755 --- a/curses/wicd-curses.py +++ b/curses/wicd-curses.py @@ -219,9 +219,8 @@ def about_dialog(body): ('green', " \\\\\\"), " |+| ", ('green', "///"), " Adam Blackburn\n", " ___|+|___ Dan O'Reilly\n", " ____|+|____ Andrew Psaltis\n", -" |-----------| David Paleino\n", -"-----------------------------------------------------"] - about = TextDialog(theText, 16, 55, header=('header', _('About Wicd'))) +" |-----------| David Paleino\n"] + about = TextDialog(theText, 17, 55, header=('header', _('About Wicd'))) about.run(ui, body)