fix wall offset

This commit is contained in:
thomasv 2013-03-20 13:58:08 +01:00
parent 86674a958a
commit b487fc072c
1 changed files with 2 additions and 1 deletions

View File

@ -124,7 +124,8 @@ class ElectrumGui:
self.stdscr.addstr( 12, 25, _("[Clear]"), curses.A_REVERSE if self.pos%6==5 else curses.color_pair(2))
def print_banner(self):
self.stdscr.addstr( 1, 1, self.wallet.interface.banner )
for i, x in enumerate( self.wallet.interface.banner.split('\n') ):
self.stdscr.addstr( 1+i, 1, x )
def print_list(self, list, firstline):
self.maxpos = len(list)