mirror of
https://github.com/Julow/Unexpected-Keyboard.git
synced 2024-11-21 14:53:11 +01:00
Don't apply Fn to space bar left and right
"home" and "end" on the spacebar slider are not useful.
This commit is contained in:
parent
fcbaa23ccf
commit
0d51f7ea1e
@ -211,7 +211,6 @@ public final class KeyModifier
|
||||
case Keyevent: name = apply_fn_keyevent(k.getKeyevent()); break;
|
||||
case Event: name = apply_fn_event(k.getEvent()); break;
|
||||
case Placeholder: name = apply_fn_placeholder(k.getPlaceholder()); break;
|
||||
case Cursor_move: name = apply_fn_cursormove(k.getCursorMove()); break;
|
||||
}
|
||||
return (name == null) ? k : KeyValue.getKeyByName(name);
|
||||
}
|
||||
@ -257,16 +256,6 @@ public final class KeyModifier
|
||||
}
|
||||
}
|
||||
|
||||
private static String apply_fn_cursormove(short cur)
|
||||
{
|
||||
switch (cur)
|
||||
{
|
||||
case -1 : return "home"; // cursor_left
|
||||
case 1 : return "end"; // cursor_right
|
||||
default: return null;
|
||||
}
|
||||
}
|
||||
|
||||
private static KeyValue apply_ctrl(KeyValue k)
|
||||
{
|
||||
if (_modmap != null)
|
||||
|
Loading…
Reference in New Issue
Block a user