Skip to content

Commit

Permalink
updated CHANGELOG.md & run 'dart format .'
Browse files Browse the repository at this point in the history
  • Loading branch information
WXL-steven committed Jul 8, 2024
1 parent 566b167 commit 7ec07b3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## NEXT
* fix: Resolved issue where `PaneItem` within `PaneItemExpander` remained accessible in `NavigationPane` compact mode ([#1081](https://github.com/bdlukaa/fluent_ui/issues/1081))

## 4.9.0

* fix: ¹ `DropDownButton.closeAfterClick` is now correctly applied. ² Added `MenuFlyoutItem.closeAfterClick`, which defaults to `true`. ([#1016](https://github.com/bdlukaa/fluent_ui/issues/1016))
Expand Down
6 changes: 3 additions & 3 deletions lib/src/controls/navigation/navigation_view/pane_items.dart
Original file line number Diff line number Diff line change
Expand Up @@ -937,9 +937,9 @@ class _PaneItemExpanderMenuItem extends MenuFlyoutItemBase {
forceEnabled: item.enabled,
builder: (context, states) {
final textStyle = (isSelected
? navigationTheme.selectedTextStyle?.resolve(states)
: navigationTheme.unselectedTextStyle?.resolve(states))
?? const TextStyle();
? navigationTheme.selectedTextStyle?.resolve(states)
: navigationTheme.unselectedTextStyle?.resolve(states)) ??
const TextStyle();
final iconTheme = IconThemeData(
color: textStyle.color ??
(isSelected
Expand Down

0 comments on commit 7ec07b3

Please sign in to comment.