better backspace detection

This commit is contained in:
ThomasV 2013-07-26 05:28:41 +02:00
parent 3350229263
commit ea1cb0a613
1 changed files with 2 additions and 1 deletions

View File

@ -181,7 +181,8 @@ class ElectrumGui:
def edit_str(self, target, c, is_num=False):
if c==263 and target:
# detect backspace
if c in [8, 127, 263] and target:
target = target[:-1]
elif not is_num or curses.unctrl(c) in '0123456789.':
target += curses.unctrl(c)