text gui: spacing between tabs
authorthomasv <thomasv@gitorious>
Tue, 30 Oct 2012 17:42:39 +0000 (18:42 +0100)
committerthomasv <thomasv@gitorious>
Tue, 30 Oct 2012 17:42:39 +0000 (18:42 +0100)
lib/gui_text.py

index 3c2d32b..747af6a 100644 (file)
@@ -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")]))