Skip to content

Commit

Permalink
CommunityToolkit#3185 - Oddness with Theming and Selection in Infinit…
Browse files Browse the repository at this point in the history
…eCanvas Control
  • Loading branch information
deanchalkbp committed Mar 25, 2020
1 parent 9fc3a62 commit 8303a5d
Showing 1 changed file with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,6 @@ protected override void OnApplyTemplate()
_editZone.TextChanged -= EditZone_TextChanged;
_editZone.TextChanged += EditZone_TextChanged;
_editZone.FontSize = FontSize;
_editZone.SelectionHighlightColorWhenNotFocused.Color = Color.FromArgb(
1,
_editZone.SelectionHighlightColor.Color.R,
_editZone.SelectionHighlightColor.Color.G,
_editZone.SelectionHighlightColor.Color.B);
_editZone.SelectionHighlightColorWhenNotFocused.Opacity = .1;

_editZone.SelectionHighlightColor.Color =
Color.FromArgb(
1,
_editZone.SelectionHighlightColor.Color.R,
_editZone.SelectionHighlightColor.Color.G,
_editZone.SelectionHighlightColor.Color.B);

_editZone.SelectionHighlightColor.Opacity = .1;

base.OnApplyTemplate();
}

Expand Down

0 comments on commit 8303a5d

Please sign in to comment.