aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/console/components/console.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/console/components/console.js b/src/console/components/console.js
index 21439ef..7c23dab 100644
--- a/src/console/components/console.js
+++ b/src/console/components/console.js
@@ -74,17 +74,11 @@ export default class ConsoleComponent {
return this.doEnter(e);
}
break;
- case KeyboardEvent.DOM_VK_DOWN:
- this.selectNext(e);
- break;
case KeyboardEvent.DOM_VK_N:
if (e.ctrlKey) {
this.selectNext(e);
}
break;
- case KeyboardEvent.DOM_VK_UP:
- this.selectPrev(e);
- break;
case KeyboardEvent.DOM_VK_P:
if (e.ctrlKey) {
this.selectPrev(e);