Previously applied keyboard broadcasting patch broke the original keystroke / keyDown / keyUp screens feature. Fixed

This commit is contained in:
mthiel 2009-12-31 01:23:53 +00:00
parent b0574d6fee
commit 027c2a849f
1 changed files with 2 additions and 2 deletions

View File

@ -1558,7 +1558,7 @@ CServer::onKeyDown(KeyID id, KeyModifierMask mask, KeyButton button,
assert(m_active != NULL);
// relay
if (!m_keyboardBroadcasting ||
if (!m_keyboardBroadcasting &&
(screens && IKeyState::CKeyInfo::isDefault(screens))) {
m_active->keyDown(id, mask, button);
}
@ -1586,7 +1586,7 @@ CServer::onKeyUp(KeyID id, KeyModifierMask mask, KeyButton button,
assert(m_active != NULL);
// relay
if (!m_keyboardBroadcasting ||
if (!m_keyboardBroadcasting &&
(screens && IKeyState::CKeyInfo::isDefault(screens))) {
m_active->keyUp(id, mask, button);
}