fix forgotten variable

This commit is contained in:
chrys 2017-08-27 18:46:54 +02:00
parent 9db0073fdf
commit 02d9f99fe4

View File

@ -23,7 +23,7 @@ class command():
return return
if self.env['runtime']['screenManager'].isScreenChange(): if self.env['runtime']['screenManager'].isScreenChange():
return return
if len(self.env['input']['prevDeepestInput']) > len(self.env['input']['currInput']): if len(self.env['runtime']['inputManager'].getLastDeepestInput()) > len(self.env['input']['currInput']):
return return
# if the filter is set # if the filter is set
if self.env['runtime']['settingsManager'].getSetting('keyboard', 'interruptOnKeyPressFilter').strip() != '': if self.env['runtime']['settingsManager'].getSetting('keyboard', 'interruptOnKeyPressFilter').strip() != '':