URI: 
       ttext gui: spacing between tabs - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit e2add776bcf8cef6241d67167a5d7ff52f377780
   DIR parent 43ceb6b52a76a19c49b555d3fea5083cb61f7f3e
  HTML Author: thomasv <thomasv@gitorious>
       Date:   Tue, 30 Oct 2012 18:42:39 +0100
       
       ttext gui: spacing between tabs
       
       Diffstat:
         M lib/gui_text.py                     |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/gui_text.py b/lib/gui_text.py
       t@@ -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")]))