Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Porter <slug@qwebirc.org>2012-02-13 01:12:18 (GMT)
committer Chris Porter <slug@qwebirc.org>2012-02-13 01:12:18 (GMT)
commitbe461394f003b1c82b0ac0a198b63556666ebe63 (patch)
tree091262da49c1f306ff3d9106801a40946e130fb4
parent52244b1ceb3d5c742ef85ac0cb1eae9c61be0c74 (diff)
Fixes issue #207
-rw-r--r--js/ui/frontends/qui.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/ui/frontends/qui.js b/js/ui/frontends/qui.js
index 2ff8d3e..bbbe192 100644
--- a/js/ui/frontends/qui.js
+++ b/js/ui/frontends/qui.js
@@ -200,7 +200,7 @@ qwebirc.ui.QUI = new Class({
resultfn = this.commandhistory.upLine;
} else if(e.key == "down") {
resultfn = this.commandhistory.downLine;
- } else if(e.key == "tab") {
+ } else if(e.key == "tab" && !e.altKey && !e.ctrlKey && !e.shiftKey) {
new Event(e).stop();
this.tabComplete(inputbox);
return;