Skip to content

Commit

Permalink
IconPresenter must not be focusable
Browse files Browse the repository at this point in the history
  • Loading branch information
batzen committed Feb 9, 2022
1 parent 78741ef commit a44278c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Fluent.Ribbon/Controls/IconPresenter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ static IconPresenter()
SnapsToDevicePixelsProperty.OverrideMetadata(typeof(IconPresenter), new FrameworkPropertyMetadata(BooleanBoxes.TrueBox));

IsEnabledProperty.OverrideMetadata(typeof(IconPresenter), new UIPropertyMetadata(OnIsEnabledChanged));

FocusableProperty.OverrideMetadata(typeof(IconPresenter), new UIPropertyMetadata(BooleanBoxes.FalseBox));
}

public IconPresenter()
Expand Down

0 comments on commit a44278c

Please sign in to comment.