diff options
author | Florrie <towerofnix@gmail.com> | 2019-01-09 20:36:44 -0400 |
---|---|---|
committer | Florrie <towerofnix@gmail.com> | 2019-01-09 20:36:44 -0400 |
commit | 3f42899011abac60121952d576649b9ffb6653b9 (patch) | |
tree | 74b17619ce6bcb922be14e6d22ae150f0122e395 | |
parent | 1dcca8d02abab0f3ad511ed14a45c0fa67e8b6ca (diff) |
Fix left/right seeking in context menu
AKA, prevent left/right from bubbling (I already intended this to happen but I forgot a required return false).
-rw-r--r-- | ui.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui.js b/ui.js index cd2f409..3d71d24 100644 --- a/ui.js +++ b/ui.js @@ -1306,6 +1306,7 @@ class InlineListPickerElement extends FocusElement { } else { return true } + return false } clicked(button) { |