patch colon not working on swedish (+ others?) kb layout

This commit is contained in:
Alexander Cobleigh 2016-11-17 19:13:44 +01:00
parent a63f1ffb1c
commit 334f3c980e

View File

@ -46,6 +46,7 @@ function Keyboard()
case 37: this.key_arrow_left(); break;
case 39: this.key_arrow_right(); break;
case 186: this.key_colon(); break;
case 190: if (event.shiftKey) this.key_colon(); break;
case 27: this.key_escape(); break;
}
@ -110,4 +111,4 @@ function Keyboard()
commander.hide();
ronin.overlay.clear();
}
}
}