1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-20 21:08:06 +01:00

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.
This commit is contained in:
Tom Van Braeckel
2014-12-21 17:41:22 +01:00
parent 411e12cfe4
commit 732ad55c52

View File

@@ -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)