From a6b7787463af735df3e06a58c0f0a7a3c27fafd7 Mon Sep 17 00:00:00 2001 From: "cheoldong.choi" Date: Fri, 20 Sep 2024 08:29:35 +0900 Subject: [PATCH] The EditableComboBox is missing the part that applies the style to the TextBox, so add it. --- CHANGELOG.md | 4 ++++ lib/src/controls/form/editable_combo_box.dart | 1 + 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b3ca18a..caffdc35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) diff --git a/lib/src/controls/form/editable_combo_box.dart b/lib/src/controls/form/editable_combo_box.dart index d3ecc181..3537d2de 100644 --- a/lib/src/controls/form/editable_combo_box.dart +++ b/lib/src/controls/form/editable_combo_box.dart @@ -164,6 +164,7 @@ class _EditableComboboxState extends ComboBoxState { return KeyEventResult.ignored; }, child: TextBox( + style: widget.style, focusNode: focusNode, autofocus: widget.autofocus, controller: controller,