From beda8972e87a20b9162d2d4009fc65ca749ce630 Mon Sep 17 00:00:00 2001 From: antelle Date: Sun, 3 Nov 2019 10:04:34 +0100 Subject: [PATCH] fix #1333: item selection in the auto-type pop-up --- app/scripts/views/auto-type/auto-type-select-view.js | 2 +- release-notes.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/scripts/views/auto-type/auto-type-select-view.js b/app/scripts/views/auto-type/auto-type-select-view.js index 4a5d52eb..8363fd61 100644 --- a/app/scripts/views/auto-type/auto-type-select-view.js +++ b/app/scripts/views/auto-type/auto-type-select-view.js @@ -193,7 +193,7 @@ class AutoTypeSelectView extends View { itemClicked(e) { const itemEl = $(e.target).closest('.at-select__item'); - const optionsClicked = $(e.target).closest('.at-select__item-options'); + const optionsClicked = $(e.target).closest('.at-select__item-options').length; if (optionsClicked) { this.showItemOptions(itemEl, e); diff --git a/release-notes.md b/release-notes.md index 703c88d2..39ae86f8 100644 --- a/release-notes.md +++ b/release-notes.md @@ -3,6 +3,7 @@ Release notes ##### v1.12.2 (TBD) `-` fixed non-working updater `-` fix #1336: saving disabled storage option +`-` fix #1333: item selection in the auto-type pop-up ##### v1.12.1 (2019-10-27) `-` fix #1324: duplicated shortcut editor in settings