flip acceptSuggestionOnSubmit default to true

This commit is contained in:
Fabian Freund
2026-07-19 14:25:48 +02:00
parent 36d85f9373
commit 47a2a70795
2 changed files with 2 additions and 2 deletions
@@ -444,7 +444,7 @@ class GeneralSettings with FastEquatable {
customTabsEnabled = customTabsEnabled ?? true,
enableLocalSearchIndex = enableLocalSearchIndex ?? true,
indexPrivateTabs = indexPrivateTabs ?? false,
acceptSuggestionOnSubmit = acceptSuggestionOnSubmit ?? false,
acceptSuggestionOnSubmit = acceptSuggestionOnSubmit ?? true,
pureBlack = pureBlack ?? false,
globalDesktopMode = globalDesktopMode ?? false,
desktopModeSites = desktopModeSites ?? const [],
@@ -90,7 +90,7 @@ class AutoSuggestTextField extends HookWidget {
this.enableSuggestions = true,
this.autocorrect = false,
this.textFieldKey,
this.acceptSuggestionOnSubmit = false,
this.acceptSuggestionOnSubmit = true,
});
bool _suggestionHasMatch() =>