diff options
author | Devine Lu Linvega <[email protected]> | 2019-04-14 12:34:40 +0900 |
---|---|---|
committer | Devine Lu Linvega <[email protected]> | 2019-04-14 12:34:40 +0900 |
commit | 36c0394e328315021aa97d3333952575d4abd32a (patch) | |
tree | cb603574af58f56019365cde50bfe13be8931c9f /desktop/sources/scripts/commander.js | |
parent | f836cab9eb4629d06fe86559e17d51c2b564b0f2 (diff) | |
download | Orca-36c0394e328315021aa97d3333952575d4abd32a.tar.gz Orca-36c0394e328315021aa97d3333952575d4abd32a.zip |
Allow capital case in commander
Diffstat (limited to 'desktop/sources/scripts/commander.js')
-rw-r--r-- | desktop/sources/scripts/commander.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/sources/scripts/commander.js b/desktop/sources/scripts/commander.js index 2a9edde..013854c 100644 --- a/desktop/sources/scripts/commander.js +++ b/desktop/sources/scripts/commander.js @@ -25,7 +25,7 @@ function Commander (terminal) { this.write = function (key) { if (key.length !== 1) { return } - this.query += key.toLowerCase() + this.query += key this.preview() } |