mirror of
https://github.com/Julow/Unexpected-Keyboard.git
synced 2024-11-21 14:53:11 +01:00
Automatic Shift should be disabled when pressing Ctrl
This was caused by a programming error.
This commit is contained in:
parent
9bf0a20226
commit
237c4e2cc2
@ -110,7 +110,7 @@ public final class Pointers implements Handler.Callback
|
||||
if (latched)
|
||||
add_fake_pointer(key, kv, lock);
|
||||
}
|
||||
else if ((ptr.flags & FLAG_P_FAKE) != 0)
|
||||
else if ((ptr.flags & FLAG_P_FAKE) == 0)
|
||||
{} // Key already latched but not by a fake ptr, do nothing.
|
||||
else if (lock)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user