Skip to content

Commit

Permalink
fix: Correctly apply EditableComboBox.style.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdlukaa committed Sep 20, 2024
2 parents 620b470 + a6b7787 commit 23f32e8
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 23f32e8

Please sign in to comment.