From 517134c95bb769db3fcef47d6f066ea9b5dd5600 Mon Sep 17 00:00:00 2001 From: antelle Date: Sat, 12 Oct 2019 18:56:33 +0200 Subject: [PATCH] fix #1300: selecting auto-type sequence items issues --- app/scripts/views/auto-type/auto-type-hint-view.js | 2 +- release-notes.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/app/scripts/views/auto-type/auto-type-hint-view.js b/app/scripts/views/auto-type/auto-type-hint-view.js index 5401072d..9aa31a2e 100644 --- a/app/scripts/views/auto-type/auto-type-hint-view.js +++ b/app/scripts/views/auto-type/auto-type-hint-view.js @@ -77,7 +77,7 @@ class AutoTypeHintView extends View { const pos = this.input.selectionEnd || this.input.value.length; this.input.value = this.input.value.substr(0, pos) + text + this.input.value.substr(pos); this.input.selectionStart = this.input.selectionEnd = pos + text.length; - this.input.dispatchEvent(new Event('input')); + this.input.dispatchEvent(new Event('input', { bubbles: true })); } } diff --git a/release-notes.md b/release-notes.md index a42e5467..a539b1be 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,5 +1,8 @@ Release notes ------------- +##### v1.11.9 (TBD) +`-` fix #1300: selecting auto-type sequence items issues + ##### v1.11.8 (2019-10-11) `-` fix #1292: macOS app notarization `-` fix #1296: search in auto-type