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 80a9e0dd..c81cba1a 100644 --- a/app/scripts/views/auto-type/auto-type-select-view.js +++ b/app/scripts/views/auto-type/auto-type-select-view.js @@ -32,7 +32,6 @@ class AutoTypeSelectView extends View { constructor(model) { super(model); this.initScroll(); - this.listenTo(Events, 'main-window-will-close', this.mainWindowWillClose); this.listenTo(Events, 'keypress:auto-type', this.keyPressed); this.setupKeys(); } @@ -216,10 +215,6 @@ class AutoTypeSelectView extends View { this.showItemOptions(itemEl, e); } - mainWindowWillClose(e) { - e.preventDefault(); - } - showItemOptions(itemEl, event) { if (event) { event.stopImmediatePropagation();