Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public partial class SettingsCard : ButtonBase
nameof(ActionIcon),
typeof(IconElement),
typeof(SettingsCard),
new PropertyMetadata(defaultValue: "\ue974"));
new PropertyMetadata(defaultValue: null));

/// <summary>
/// The backing <see cref="DependencyProperty"/> for the <see cref="ActionIconToolTip"/> property.
Expand Down
3 changes: 3 additions & 0 deletions components/SettingsControls/src/SettingsCard/SettingsCard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Comment thread
Arlodotexe marked this conversation as resolved.
ActionIcon = new FontIcon { Glyph = "\ue974", MirroredWhenRightToLeft = true };
Comment thread
Arlodotexe marked this conversation as resolved.
Comment thread
Arlodotexe marked this conversation as resolved.
}
Comment thread
Arlodotexe marked this conversation as resolved.

/// <inheritdoc />
Expand Down
Loading