From 07c8150c2c25d80b686a791aeeebb2e1aa6d3616 Mon Sep 17 00:00:00 2001 From: antelle Date: Thu, 16 Feb 2017 23:14:54 +0100 Subject: [PATCH] fix #482: auto-type with empty text fields --- app/scripts/auto-type/auto-type-runner.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/scripts/auto-type/auto-type-runner.js b/app/scripts/auto-type/auto-type-runner.js index c00267b2..04df076d 100644 --- a/app/scripts/auto-type/auto-type-runner.js +++ b/app/scripts/auto-type/auto-type-runner.js @@ -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':