Skip to content

Commit f23b85b

Browse files
committed
allow inner margin helper to inherit down
1 parent 4cf1838 commit f23b85b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MaterialDesignThemes.Wpf/TextFieldAssist.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public static class TextFieldAssist
1818
"TextBoxViewMargin",
1919
typeof(Thickness),
2020
typeof(TextFieldAssist),
21-
new PropertyMetadata(new Thickness(double.NegativeInfinity), TextBoxViewMarginPropertyChangedCallback));
21+
new FrameworkPropertyMetadata(new Thickness(double.NegativeInfinity), FrameworkPropertyMetadataOptions.Inherits, TextBoxViewMarginPropertyChangedCallback));
2222

2323
/// <summary>
2424
/// Sets the text box view margin.

0 commit comments

Comments
 (0)