Skip to content

Commit

Permalink
Fix MaterialMaskedTextBox enabled property issue
Browse files Browse the repository at this point in the history
Fix MaterialMaskedTextBox enabled property issue (#282)
  • Loading branch information
orapps44 authored Nov 4, 2021
1 parent d71dc3c commit 4f472bd
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions MaterialSkin/Controls/MaterialMaskedTextBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1421,10 +1421,6 @@ public MaterialMaskedTextBox()
_animationManager.StartNewAnimation(AnimationDirection.Out);
UpdateRects();
};
EnabledChanged += (sender, args) =>
{
baseTextBox.Enabled = Enabled;
};

baseTextBox.TextChanged += new EventHandler(Redraw);
baseTextBox.BackColorChanged += new EventHandler(Redraw);
Expand Down

0 comments on commit 4f472bd

Please sign in to comment.