Skip to content

Commit

Permalink
The EditableComboBox is missing the part that applies the style to th…
Browse files Browse the repository at this point in the history
…e TextBox, so add it.
  • Loading branch information
hanwha-cheoldong committed Sep 19, 2024
1 parent 620b470 commit a6b7787
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.9.3

- fix : The EditableComboBox is missing the part that applies the style to the TextBox, so add it.

## 4.9.2

- feat: `NavigationAppBar` `leading` widget is now a minimum of `kCompactNavigationPaneWidth` width instead of being fixed to this width ([#1103](https://github.com/bdlukaa/fluent_ui/pull/1103))
Expand Down
1 change: 1 addition & 0 deletions lib/src/controls/form/editable_combo_box.dart
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ class _EditableComboboxState<T> extends ComboBoxState<T> {
return KeyEventResult.ignored;
},
child: TextBox(
style: widget.style,
focusNode: focusNode,
autofocus: widget.autofocus,
controller: controller,
Expand Down

0 comments on commit a6b7787

Please sign in to comment.