1
0
Fork 0

Revert the filter clearing fix. It used to work correctly.

This reverts commit 2dd9de71da.
This commit is contained in:
sspanak 2024-08-29 11:21:39 +03:00 committed by Dimo Karaivanov
parent 7195688867
commit b0e08189c0
2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:tools="http://schemas.android.com/tools"
android:versionCode="646"
android:versionName="37.3"
android:versionCode="643"
android:versionName="37.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/> <!-- allows displaying notifications on Android >= 13 -->

View file

@ -186,7 +186,7 @@ public abstract class HotkeyHandler extends CommandHandler {
suggestionOps.cancelDelayedAccept();
if (mInputMode.clearWordStem() && mInputMode.isStemFilterFuzzy()) {
if (mInputMode.clearWordStem()) {
mInputMode.loadSuggestions(this::getSuggestions, suggestionOps.getCurrent(mInputMode.getSequenceLength()));
return true;
}