]> jfr.im git - irc/quakenet/qwebirc.git/commitdiff
Fix alt+gr (for German keyboards).
authorChris Porter <redacted>
Mon, 20 Oct 2008 00:35:16 +0000 (01:35 +0100)
committerChris Porter <redacted>
Mon, 20 Oct 2008 00:35:16 +0000 (01:35 +0100)
js/ui/baseui.js

index 9a6cf1631725790da4343d765f9434dd2d7ae7a6..cf9b94de97210b1b0bb9756bd8328b68215ab250 100644 (file)
@@ -96,7 +96,7 @@ qwebirc.ui.StandardUI = new Class({
   initialize: function(parentElement, windowClass, uiName, options) {
     this.parent(parentElement, windowClass, uiName, options);
     window.addEvent("keydown", function(x) {
-      if(!x.alt)
+      if(!x.alt || x.control)
         return;
         
       if(x.key == "a" || x.key == "A") {