From 676c27beb67b48c852f393782960d4dfd9b14feb Mon Sep 17 00:00:00 2001 From: Avishai Dernis Date: Sun, 24 May 2026 19:19:39 +0300 Subject: [PATCH] Added settings action icon direction RTL mirror hotfix --- components/SettingsControls/src/SettingsCard/SettingsCard.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/SettingsControls/src/SettingsCard/SettingsCard.cs b/components/SettingsControls/src/SettingsCard/SettingsCard.cs index ef1d4a09..fbfc9e16 100644 --- a/components/SettingsControls/src/SettingsCard/SettingsCard.cs +++ b/components/SettingsControls/src/SettingsCard/SettingsCard.cs @@ -66,6 +66,9 @@ public partial class SettingsCard : ButtonBase public SettingsCard() { this.DefaultStyleKey = typeof(SettingsCard); + + // This is perhaps indicative of an issue with the action icon requiring a concrete FontElement instead of a template + ActionIcon = new FontIcon { Glyph = "\ue974", MirroredWhenRightToLeft = true }; } ///