mirror of
https://github.com/debauchee/barrier.git
synced 2026-02-10 05:36:22 +08:00
Removed ignoreNumLock option. It doesn't really seem to be
necessary.
This commit is contained in:
@@ -445,11 +445,6 @@ CServerProxy::enter()
|
||||
m_seqNum = seqNum;
|
||||
}
|
||||
|
||||
// ignore num lock if so desired
|
||||
if (m_ignoreNumLock) {
|
||||
mask &= ~KeyModifierNumLock;
|
||||
}
|
||||
|
||||
// forward
|
||||
getClient()->enter(x, y, seqNum, static_cast<KeyModifierMask>(mask), false);
|
||||
}
|
||||
@@ -525,12 +520,6 @@ CServerProxy::keyDown()
|
||||
mask2 != static_cast<KeyModifierMask>(mask))
|
||||
LOG((CLOG_DEBUG1 "key down translated to id=%d, mask=0x%04x", id2, mask2));
|
||||
|
||||
// ignore num lock if so desired
|
||||
if (id2 == kKeyNumLock && m_ignoreNumLock) {
|
||||
LOG((CLOG_DEBUG1 "ignoring num lock"));
|
||||
return;
|
||||
}
|
||||
|
||||
// forward
|
||||
getClient()->keyDown(id2, mask2, button);
|
||||
}
|
||||
@@ -555,12 +544,6 @@ CServerProxy::keyRepeat()
|
||||
mask2 != static_cast<KeyModifierMask>(mask))
|
||||
LOG((CLOG_DEBUG1 "key repeat translated to id=%d, mask=0x%04x", id2, mask2));
|
||||
|
||||
// ignore num lock if so desired
|
||||
if (id2 == kKeyNumLock && m_ignoreNumLock) {
|
||||
LOG((CLOG_DEBUG1 "ignoring num lock"));
|
||||
return;
|
||||
}
|
||||
|
||||
// forward
|
||||
getClient()->keyRepeat(id2, mask2, count, button);
|
||||
}
|
||||
@@ -584,12 +567,6 @@ CServerProxy::keyUp()
|
||||
mask2 != static_cast<KeyModifierMask>(mask))
|
||||
LOG((CLOG_DEBUG1 "key up translated to id=%d, mask=0x%04x", id2, mask2));
|
||||
|
||||
// ignore num lock if so desired
|
||||
if (id2 == kKeyNumLock && m_ignoreNumLock) {
|
||||
LOG((CLOG_DEBUG1 "ignoring num lock"));
|
||||
return;
|
||||
}
|
||||
|
||||
// forward
|
||||
getClient()->keyUp(id2, mask2, button);
|
||||
}
|
||||
@@ -707,9 +684,6 @@ CServerProxy::resetOptions()
|
||||
if (m_heartRate >= 0.0) {
|
||||
CProtocolUtil::writef(getOutputStream(), kMsgCNoop);
|
||||
}
|
||||
|
||||
// don't ignore num lock
|
||||
m_ignoreNumLock = false;
|
||||
}
|
||||
|
||||
void
|
||||
@@ -752,9 +726,6 @@ CServerProxy::setOptions()
|
||||
CProtocolUtil::writef(getOutputStream(), kMsgCNoop);
|
||||
}
|
||||
}
|
||||
else if (options[i] == kOptionIgnoreNumLock) {
|
||||
m_ignoreNumLock = true;
|
||||
}
|
||||
if (id != kKeyModifierIDNull) {
|
||||
m_modifierTranslationTable[id] =
|
||||
static_cast<KeyModifierID>(options[i + 1]);
|
||||
|
||||
Reference in New Issue
Block a user