Skip to content

Commit

Permalink
Fixes #1228
Browse files Browse the repository at this point in the history
  • Loading branch information
batzen committed Feb 6, 2025
1 parent bc383d2 commit b1abcb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
- [#1218](../../issues/1218) - Selected tab is lost on screen changes (thanks @cbra-caa)
- [#1222](../../issues/1222) - Icon property values of controls are translated by the translation tools like catalyst (thanks @avikramaditya)
- [#1227](../../issues/1227) - Button events inside split button do not fire when ClosePopupOnMouseDownDelay = 0
- [#1228](../../issues/1228) - ComboBox dropdown is empty when expanding for the first time when specifying ItemsPanelTemplate in order to add Grouping
- Value of `HideContextTabs` are now properly restored when `Backstage` is closed
- `RibbonTitleBar`
- Fixed rendering when `HideContextTabs` is `true`
Expand Down
2 changes: 1 addition & 1 deletion Fluent.Ribbon/Controls/GalleryPanel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public ItemContainerGenerator? ItemContainerGenerator
private static void OnItemContainerGeneratorChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
var galleryPanel = (GalleryPanel)d;
galleryPanel.RefreshAsync();
galleryPanel.Refresh();
}

#endregion
Expand Down

0 comments on commit b1abcb7

Please sign in to comment.