Fixed bug with Ctrl-Key no longer working

This commit is contained in:
Andreas Stöckel 2012-03-27 13:44:38 +00:00
parent 5f4341225a
commit 3a23d4bb21

View File

@ -89,7 +89,7 @@ if (typeof Array.prototype.indexOf == "undefined")
function egwGetShiftState(e)
{
var state = EGW_AO_SHIFT_STATE_NONE;
state = egwSetBit(state, EGW_AO_SHIFT_STATE_MULTI, e.ctrkKey || e.metaKey);
state = egwSetBit(state, EGW_AO_SHIFT_STATE_MULTI, e.ctrlKey || e.metaKey);
state = egwSetBit(state, EGW_AO_SHIFT_STATE_BLOCK, e.shiftKey);
return state;