extra logging, polling keys after modifier key fake
This commit is contained in:
parent
729bbeab01
commit
0563eeb467
|
@ -546,6 +546,14 @@ COSXKeyState::fakeKey(const Keystroke& keystroke)
|
||||||
if (keystroke.m_data.m_button.m_client) {
|
if (keystroke.m_data.m_button.m_client) {
|
||||||
ARCH->sleep(0.01);
|
ARCH->sleep(0.01);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
IKeyState::KeyButtonSet pressed;
|
||||||
|
pollPressedKeys(pressed);
|
||||||
|
|
||||||
|
IKeyState::KeyButtonSet::const_iterator it;
|
||||||
|
for (it = pressed.begin(); it != pressed.end(); ++it) {
|
||||||
|
LOG((CLOG_DEBUG1 " pressed: button=%03x", *it));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue