From e4f934a05fab7e750e18fd5161089725a2b4bef3 Mon Sep 17 00:00:00 2001 From: thomasv Date: Fri, 14 Dec 2012 13:08:47 +0100 Subject: [PATCH] fix: missing chars --- lib/gui_text.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/gui_text.py b/lib/gui_text.py index af58f2e5..476facb1 100644 --- 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: