Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ and this project uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
- Standard builds now exclude non-en-US dictionary assets and download optional dictionaries dynamically.

### Fixed
- **Text Edit mode no longer opens as a blank panel** when one-handed wrapper layout is active;
the wrapper now lays out the visible Text Edit/touchpad overlay instead of the hidden keyboard view.
- **Sticky Shift from upstream handwriting cleanup** — upstream v3.8.6 stopped the hidden handwriting
bottom row on every keyboard-frame switch, which globally cancelled the active Shift pointer before
release. We keep the upstream handwriting feature but only stop handwriting when it is actually
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -888,6 +888,10 @@ public View getVisibleKeyboardView() {
return mClipboardHistoryView;
} else if (isHandwritingShowing()) {
return mHandwritingView;
} else if (mTouchpadView != null && mTouchpadView.isShown()) {
return mTouchpadView;
} else if (mTextEditView != null && mTextEditView.isShown()) {
return mTextEditView;
}
return mKeyboardView;
}
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/4000.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ Offline AI now runs on-device GGUF models via llama.cpp, with adjustable samplin
Richer touchpad gestures: word select, word-by-word navigation, clipboard, undo/redo, hold-to-backspace.
Auto-read one-time codes from an incoming SMS as a tappable suggestion.
Regex shortcuts in Text Expander.
Text Edit mode no longer opens as a blank panel in one-handed layouts.
Loading