Skip to content

Commit

Permalink
fix #1300: selecting auto-type sequence items issues
Browse files Browse the repository at this point in the history
  • Loading branch information
antelle committed Oct 12, 2019
1 parent 0f5b03c commit e866bac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/views/auto-type/auto-type-hint-view.js
Expand Up @@ -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 }));
}
}

Expand Down
3 changes: 3 additions & 0 deletions release-notes.md
Expand Up @@ -9,6 +9,9 @@ Release notes
`+` #480: option to launch the app minimized
`-` fix #1273: untranslated menu items

##### 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
Expand Down

0 comments on commit e866bac

Please sign in to comment.