From 31019a237b79c5dad595b0d15334f9ae8e277165 Mon Sep 17 00:00:00 2001 From: Fabian Freund Date: Wed, 8 Jul 2026 07:28:37 +0200 Subject: [PATCH] re-enable autosuggest to fix gboard issues --- .../features/search/presentation/widgets/search_field.dart | 2 +- .../lib/presentation/widgets/auto_suggest_text_field.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/weblibre/lib/features/geckoview/features/search/presentation/widgets/search_field.dart b/apps/weblibre/lib/features/geckoview/features/search/presentation/widgets/search_field.dart index d176fa42..28a3c950 100644 --- a/apps/weblibre/lib/features/geckoview/features/search/presentation/widgets/search_field.dart +++ b/apps/weblibre/lib/features/geckoview/features/search/presentation/widgets/search_field.dart @@ -133,7 +133,7 @@ class SearchField extends HookConsumerWidget { controller: textEditingController, suggestion: suggestion.value, acceptSuggestionOnSubmit: acceptSuggestionOnSubmit, - enableSuggestions: false, + enableSuggestions: true, autocorrect: false, enableIMEPersonalizedLearning: !incognitoEnabled, focusNode: safeFocusNode, diff --git a/apps/weblibre/lib/presentation/widgets/auto_suggest_text_field.dart b/apps/weblibre/lib/presentation/widgets/auto_suggest_text_field.dart index 7e41d915..807ad9cb 100644 --- a/apps/weblibre/lib/presentation/widgets/auto_suggest_text_field.dart +++ b/apps/weblibre/lib/presentation/widgets/auto_suggest_text_field.dart @@ -87,7 +87,7 @@ class AutoSuggestTextField extends HookWidget { this.onTapOutside, this.onTap, this.onSuggestionDismiss, - this.enableSuggestions = false, + this.enableSuggestions = true, this.autocorrect = false, this.textFieldKey, this.acceptSuggestionOnSubmit = false,