VKEYBD: Switch hotkey from F7 to CTRL-F7 to reduce game conflicts.

Although this is harder for physically disabled users to trigger, they
can now use the long middle mouse button press instead to trigger.
This commit is contained in:
D G Turner 2014-04-27 04:14:41 +01:00
parent 1448bbc77e
commit 8cf41943f6
2 changed files with 3 additions and 3 deletions

View file

@ -57,10 +57,10 @@ List<Event> DefaultEventMapper::mapEvent(const Event &ev, EventSource *source) {
mappedEvent.type = EVENT_MAINMENU;
}
#ifdef ENABLE_VKEYBD
else if (ev.kbd.keycode == KEYCODE_F7 && ev.kbd.hasFlags(0)) {
else if (ev.kbd.hasFlags(KBD_CTRL) && ev.kbd.keycode == KEYCODE_F7) {
mappedEvent.type = EVENT_VIRTUAL_KEYBOARD;
// Avoid blocking F7 events from engine.
// Avoid blocking CTRL-F7 events from engine.
addDelayedEvent(100, ev);
}
#endif