diff options
author | Florrie <towerofnix@gmail.com> | 2018-09-15 15:39:08 -0300 |
---|---|---|
committer | Florrie <towerofnix@gmail.com> | 2018-09-15 15:39:08 -0300 |
commit | 61eb3d20f95a47d1c52edba14a1177d70cdf319a (patch) | |
tree | 714c3d135cd9ecfe675aac91c6d03d1d8a52e029 /ui | |
parent | b03a59e8cf545aa3ae61a91e76f5cefa4f0c3701 (diff) |
Don't bubble cancel in Dialog
Diffstat (limited to 'ui')
-rw-r--r-- | ui/Dialog.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/Dialog.js b/ui/Dialog.js index d200d08..0b77b12 100644 --- a/ui/Dialog.js +++ b/ui/Dialog.js @@ -50,6 +50,7 @@ module.exports = class Dialog extends FocusElement { keyPressed(keyBuf) { if (telc.isCancel(keyBuf)) { this.emit('cancelled') + return false } } } |