Skip to content

Commit

Permalink
Fixes #1183
Browse files Browse the repository at this point in the history
  • Loading branch information
batzen committed Dec 9, 2023
1 parent 4926a97 commit 07a24cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- Simplified state was not updated when items changed
- [#1165](../../issues/1165) - ScreenTip is not DPI aware
- [#1183](../../issues/1183) - MenuItems, having a submenu, do not stay highlighted when MenuItem from the submenu is highlighted

- ### Enhancements/Features

Expand Down
3 changes: 3 additions & 0 deletions Fluent.Ribbon/Themes/Controls/MenuItem.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@
</MultiTrigger.Conditions>
<Setter TargetName="border" Property="Visibility" Value="Visible" />
</MultiTrigger>
<Trigger Property="IsSubmenuOpen" Value="True">
<Setter TargetName="border" Property="Visibility" Value="Visible" />
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter TargetName="checkedImage" Property="Effect">
<Setter.Value>
Expand Down

0 comments on commit 07a24cb

Please sign in to comment.