Skip to content

Commit

Permalink
Fixed: Fix wrong input type selected if toolbar is switched back to e…
Browse files Browse the repository at this point in the history
…xtra keys after tapping terminal if in text input mode

Closes #2503
  • Loading branch information
agnostic-apollo committed Jun 17, 2024
1 parent e55639e commit 2dc7381
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ public boolean shouldUseCtrlSpaceWorkaround() {

@Override
public boolean isTerminalViewSelected() {
return mActivity.getTerminalToolbarViewPager() == null || mActivity.isTerminalViewSelected();
return mActivity.getTerminalToolbarViewPager() == null || mActivity.isTerminalViewSelected() || mActivity.getTerminalView().hasFocus();
}


Expand Down

0 comments on commit 2dc7381

Please sign in to comment.