Skip to content

Commit 2e00509

Browse files
authored
fix: set autoFocus true for font dropdown search input (#8294)
1 parent 41ca1dd commit 2e00509

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/font/customize_font_toolbar_item.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ class _FontFamilyDropDownState extends State<FontFamilyDropDown> {
121121
child: FlowyTextField(
122122
key: ThemeFontFamilySetting.textFieldKey,
123123
hintText: LocaleKeys.settings_appearance_fontFamily_search.tr(),
124-
autoFocus: false,
124+
autoFocus: true,
125125
debounceDuration: const Duration(milliseconds: 300),
126126
onChanged: (value) {
127127
setState(() {

0 commit comments

Comments
 (0)