mirror of
https://github.com/nix-community/nix-on-droid-app.git
synced 2025-12-07 09:31:11 +01:00
Fixed: Fix terminal cursor blinker not stopping when typing a character in non-gboard keyboards
This commit is contained in:
parent
994df1c4af
commit
8387b70f64
1 changed files with 4 additions and 0 deletions
|
|
@ -764,6 +764,10 @@ public final class TerminalView extends View {
|
|||
|
||||
if (mTermSession == null) return;
|
||||
|
||||
// Ensure cursor is shown when a key is pressed down like long hold on (arrow) keys
|
||||
if (mEmulator != null)
|
||||
mEmulator.setCursorBlinkState(true);
|
||||
|
||||
final boolean controlDown = controlDownFromEvent || mClient.readControlKey();
|
||||
final boolean altDown = leftAltDownFromEvent || mClient.readAltKey();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue