Better logic

This commit is contained in:
MikeTheWatchGuy 2018-12-19 10:11:04 -05:00
parent 3995d079f0
commit 36b2ef27d6
1 changed files with 1 additions and 3 deletions

View File

@ -20,8 +20,6 @@ while True: # Event Loop
event, values = window.Read()
if event in (None, 'Exit'):
break
if not len(values['_INPUT_']): # if field is empty ignore
continue
if values['_INPUT_'][-1] not in ('0123456789'): # if last char entered not a digit
if len(values['_INPUT_']) and values['_INPUT_'][-1] not in ('0123456789'): # if last char entered not a digit
window.Element('_INPUT_').Update(values['_INPUT_'][:-1]) # delete last char from input
window.Close()