Skip to content
Snippets Groups Projects
Commit 1eb90013 authored by Aleksandras Kostarevas's avatar Aleksandras Kostarevas
Browse files

Disable shift metastate for arrow keys

parent 5795989b
No related branches found
No related tags found
No related merge requests found
......@@ -5,12 +5,18 @@ import org.futo.inputmethod.latin.R
import org.futo.inputmethod.latin.uix.Action
import org.futo.inputmethod.latin.uix.KeyboardManagerForAction
/*
private fun getMetaState(manager: KeyboardManagerForAction): Int =
if(manager.isShifted()) {
KeyEvent.META_SHIFT_ON
} else {
0
}
*/
// Disabled due to confusion and inconsistent app behavior
private fun getMetaState(manager: KeyboardManagerForAction): Int = 0
val ArrowUpAction = Action(
icon = R.drawable.chevron_up,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment