Block ctrl+shift+ binds. Fixes #1490

This commit is contained in:
Learath 2019-04-28 20:30:17 +03:00
parent 66c89eafb2
commit 2975d6998d

View file

@ -133,6 +133,10 @@ bool CBinds::OnInput(IInput::CEvent e)
if(!Mask)
Mask = 1 << MODIFIER_NONE;
if(Mask == ((1 << MODIFIER_CTRL) | (1 << MODIFIER_SHIFT)))
return true;
bool ret = false;
for(int Mod = 0; Mod < MODIFIER_COUNT; Mod++)
{