commit e2add776bcf8cef6241d67167a5d7ff52f377780
parent 43ceb6b52a76a19c49b555d3fea5083cb61f7f3e
Author: thomasv <thomasv@gitorious>
Date: Tue, 30 Oct 2012 18:42:39 +0100
text gui: spacing between tabs
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/gui_text.py b/lib/gui_text.py
@@ -92,7 +92,7 @@ class ElectrumGui:
self.stdscr.addstr( self.maxy -1, 3, msg)
for i in range(self.num_tabs):
- self.stdscr.addstr( 0, 2 + 2*i + len(''.join(self.tab_names[0:i])), self.tab_names[i], curses.A_BOLD if self.tab == i else 0)
+ self.stdscr.addstr( 0, 2 + 2*i + len(''.join(self.tab_names[0:i])), ' '+self.tab_names[i]+' ', curses.A_BOLD if self.tab == i else 0)
self.stdscr.addstr( self.maxy -1, self.maxx-30, ' '.join([_("Settings"), _("Network"), _("Quit")]))