« get me outta code hell

tui-lib - Pure Node.js library for making visual command-line programs (ala vim, ncdu)
about summary refs log tree commit diff
path: root/ui/form/ListScrollForm.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/form/ListScrollForm.js')
-rw-r--r--ui/form/ListScrollForm.js18
1 files changed, 11 insertions, 7 deletions
diff --git a/ui/form/ListScrollForm.js b/ui/form/ListScrollForm.js
index dcdb562..581c82f 100644
--- a/ui/form/ListScrollForm.js
+++ b/ui/form/ListScrollForm.js
@@ -52,37 +52,41 @@ module.exports = class ListScrollForm extends Form {
   }
 
   keyPressed(keyBuf) {
+    let ret
+
     handleKeyPress: {
       if (this.layoutType === 'horizontal') {
         if (telc.isLeft(keyBuf)) {
           this.previousInput()
-          break handleKeyPress
+          ret = false; break handleKeyPress
         } else if (telc.isRight(keyBuf)) {
           this.nextInput()
-          break handleKeyPress
+          ret = false; break handleKeyPress
         }
       } else if (this.layoutType === 'vertical') {
         if (telc.isUp(keyBuf)) {
           this.previousInput()
-          break handleKeyPress
+          ret = false; break handleKeyPress
         } else if (telc.isDown(keyBuf)) {
           this.nextInput()
-          break handleKeyPress
+          ret = false; break handleKeyPress
         }
       }
 
       if (telc.isPageUp(keyBuf)) {
         this.previousPage()
-        break handleKeyPress
+        ret = false; break handleKeyPress
       } else if (telc.isPageDown(keyBuf)) {
         this.nextPage()
-        break handleKeyPress
+        ret = false; break handleKeyPress
       }
 
-      super.keyPressed(keyBuf)
+      ret = super.keyPressed(keyBuf)
     }
 
     this.scrollSelectedElementIntoView()
+
+    return ret
   }
 
   scrollSelectedElementIntoView() {