mirror of
https://github.com/Julow/Unexpected-Keyboard.git
synced 2024-11-22 07:13:13 +01:00
Fix regression on Ctrl on space bar slider
This makes Ctrl+move_cursor the same as before 5123ce5
.
This commit is contained in:
parent
f4c11d99ed
commit
9b917e79b1
@ -183,14 +183,20 @@ class KeyEventHandler implements Config.IKeyEventHandler
|
||||
}
|
||||
|
||||
/** Move the cursor right or left, if possible without sending key events.
|
||||
Unlike arrow keys, the selection is not removed even if shift is not on. */
|
||||
Unlike arrow keys, the selection is not removed even if shift is not on.
|
||||
Falls back to sending arrow keys events if the editor do not support
|
||||
moving the cursor or a modifier other than shift is pressed. */
|
||||
void move_cursor(int d, Pointers.Modifiers mods)
|
||||
{
|
||||
InputConnection conn = _recv.getCurrentInputConnection();
|
||||
if (conn == null)
|
||||
return;
|
||||
ExtractedText et = get_cursor_pos(conn);
|
||||
if (et == null) // Editor doesn't support moving the cursor
|
||||
// Fallback to sending key events
|
||||
if (et == null
|
||||
|| mods.has(KeyValue.Modifier.CTRL)
|
||||
|| mods.has(KeyValue.Modifier.ALT)
|
||||
|| mods.has(KeyValue.Modifier.META))
|
||||
{
|
||||
move_cursor_fallback(d, mods);
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user