commit e4f934a05fab7e750e18fd5161089725a2b4bef3
parent 25f424a8d8328b7e869b06a9bfa4a891580a8960
Author: thomasv <thomasv@gitorious>
Date: Fri, 14 Dec 2012 13:08:47 +0100
fix: missing chars
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/gui_text.py b/lib/gui_text.py
@@ -162,6 +162,7 @@ class ElectrumGui:
def main_command(self):
c = self.stdscr.getch()
+ print c
if c == curses.KEY_RIGHT: self.tab = (self.tab + 1)%self.num_tabs
elif c == curses.KEY_LEFT: self.tab = (self.tab - 1)%self.num_tabs
elif c == curses.KEY_DOWN: self.pos +=1
@@ -189,7 +190,7 @@ class ElectrumGui:
def edit_str(self, target, c, is_num=False):
- chars = '0123456789.' if is_num else '0123456789.:;,!?abcdefghigklmnoprstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
+ chars = '0123456789.' if is_num else '0123456789.:;,!?abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
if curses.unctrl(c) in chars:
target += curses.unctrl(c)
elif c==263 and target: