flip acceptSuggestionOnSubmit default to true
This commit is contained in:
@@ -444,7 +444,7 @@ class GeneralSettings with FastEquatable {
|
|||||||
customTabsEnabled = customTabsEnabled ?? true,
|
customTabsEnabled = customTabsEnabled ?? true,
|
||||||
enableLocalSearchIndex = enableLocalSearchIndex ?? true,
|
enableLocalSearchIndex = enableLocalSearchIndex ?? true,
|
||||||
indexPrivateTabs = indexPrivateTabs ?? false,
|
indexPrivateTabs = indexPrivateTabs ?? false,
|
||||||
acceptSuggestionOnSubmit = acceptSuggestionOnSubmit ?? false,
|
acceptSuggestionOnSubmit = acceptSuggestionOnSubmit ?? true,
|
||||||
pureBlack = pureBlack ?? false,
|
pureBlack = pureBlack ?? false,
|
||||||
globalDesktopMode = globalDesktopMode ?? false,
|
globalDesktopMode = globalDesktopMode ?? false,
|
||||||
desktopModeSites = desktopModeSites ?? const [],
|
desktopModeSites = desktopModeSites ?? const [],
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ class AutoSuggestTextField extends HookWidget {
|
|||||||
this.enableSuggestions = true,
|
this.enableSuggestions = true,
|
||||||
this.autocorrect = false,
|
this.autocorrect = false,
|
||||||
this.textFieldKey,
|
this.textFieldKey,
|
||||||
this.acceptSuggestionOnSubmit = false,
|
this.acceptSuggestionOnSubmit = true,
|
||||||
});
|
});
|
||||||
|
|
||||||
bool _suggestionHasMatch() =>
|
bool _suggestionHasMatch() =>
|
||||||
|
|||||||
Reference in New Issue
Block a user