Fixed: Ensure FN extra key is read by the terminal

Can't find info on why it wasn't being read before
This commit is contained in:
agnostic-apollo
2021-08-23 08:56:36 +05:00
parent 9117240961
commit d1478fb6c3
4 changed files with 17 additions and 1 deletions

View File

@@ -67,10 +67,16 @@ public class TermuxTerminalViewClientBase implements TerminalViewClient {
return false;
}
@Override
public boolean readShiftKey() {
return false;
}
@Override
public boolean readFnKey() {
return false;
}
@Override