Skip to content

Commit

Permalink
Fix broken icon in TextContextMenu (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotYoojun committed Aug 31, 2024
1 parent 3e4b61d commit 4e9eaec
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions source/iNKORE.UI.WPF.Modern/Controls/TextContextMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,27 +48,27 @@ public TextContextMenu()
Items.Add(new MenuItem
{
Command = ApplicationCommands.Cut,
Icon = new FontIcon(FluentSystemIcons.Cut_16_Regular)
Icon = new FontIcon(SegoeFluentIcons.Cut)
});
Items.Add(new MenuItem
{
Command = ApplicationCommands.Copy,
Icon = new FontIcon(FluentSystemIcons.Copy_16_Regular)
Icon = new FontIcon(SegoeFluentIcons.Copy)
});
Items.Add(new MenuItem
{
Command = ApplicationCommands.Paste,
Icon = new FontIcon(FluentSystemIcons.ClipboardPaste_16_Regular)
Icon = new FontIcon(SegoeFluentIcons.Paste)
});
Items.Add(new MenuItem
{
Command = ApplicationCommands.Undo,
Icon = new FontIcon(FluentSystemIcons.ArrowUndo_16_Regular)
Icon = new FontIcon(SegoeFluentIcons.Undo)
});
Items.Add(new MenuItem
{
Command = ApplicationCommands.Redo,
Icon = new FontIcon(FluentSystemIcons.ArrowRedo_16_Regular)
Icon = new FontIcon(SegoeFluentIcons.Redo)
});
Items.Add(new MenuItem
{
Expand Down

0 comments on commit 4e9eaec

Please sign in to comment.