File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/MaterialDesignThemes.Wpf/Converters Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public class TextBoxHorizontalScrollBarMarginConverter : IMultiValueConverter
1414 Thickness prefixTextMargin ,
1515 bool isMouseOver ,
1616 bool hasKeyboardFocus ,
17- bool isOutlinedStyle ,
17+ bool hasOutlinedTextField ,
1818 Thickness normalBorder ,
1919 Thickness activeBorder ] )
2020 {
@@ -24,7 +24,7 @@ public class TextBoxHorizontalScrollBarMarginConverter : IMultiValueConverter
2424 double bottomOffset = 0 ;
2525 double topOffset = 0 ;
2626
27- if ( isOutlinedStyle && ( isMouseOver || hasKeyboardFocus ) )
27+ if ( hasOutlinedTextField && ( isMouseOver || hasKeyboardFocus ) )
2828 {
2929 double horizDelta = activeBorder . Left - normalBorder . Left ;
3030 double vertDeltaTop = activeBorder . Top - normalBorder . Top ;
You can’t perform that action at this time.
0 commit comments