[Keyboard Manager] Alt+Tab navigation with arrow keys i (#12986)

* Draft

# Conflicts:
#	src/modules/keyboardmanager/KeyboardManagerEngineLibrary/KeyboardEventHandlers.cpp

* Handle key case

* Fix key count

* Remember if win key was pressed

* Don't search twice, remove redundant assignment

* spelling
This commit is contained in:
Mykhailo Pylyp
2021-09-04 08:49:13 +03:00
committed by GitHub
parent 941221cba9
commit a4f84844bc
2 changed files with 82 additions and 33 deletions

View File

@@ -26,4 +26,9 @@ public:
{
return targetShortcut == sc.targetShortcut && isShortcutInvoked == sc.isShortcutInvoked && winKeyInvoked == sc.winKeyInvoked;
}
bool RemapToKey()
{
return targetShortcut.index() == 0;
}
};