fix #482: auto-type with empty text fields

This commit is contained in:
antelle 2017-02-16 23:14:54 +01:00
parent 8b4d0636d3
commit 07c8150c2c
1 changed files with 2 additions and 0 deletions

View File

@ -387,6 +387,8 @@ AutoTypeRunner.prototype.emitNext = function(err) {
emitterLogger.debug('text', op.value);
if (op.value) {
this.emitter.text(op.value);
} else {
this.emitNext();
}
break;
case 'key':