InputManager: add config option to disable keybinds per device (#10064)
This commit is contained in:
parent
3fa6320a39
commit
225e13c3cc
4 changed files with 14 additions and 4 deletions
|
|
@ -74,8 +74,9 @@ class IKeyboard : public IHID {
|
|||
void updateXkbStateWithKey(uint32_t xkbKey, bool pressed);
|
||||
void updateKeymapFD();
|
||||
|
||||
bool active = false;
|
||||
bool enabled = true;
|
||||
bool active = false;
|
||||
bool enabled = true;
|
||||
bool allowBinds = true;
|
||||
|
||||
// if the keymap is overridden by the implementation,
|
||||
// don't try to set keyboard rules anymore, to avoid overwriting the requested one.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue