Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
Password fields are now colored again

Closes #18
  • Loading branch information
Rookiestyle committed Jul 25, 2022
1 parent 918e1c4 commit fb28aad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/ColoredSecureTextBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ public override void EnableProtection(bool bEnable)

private void EnableProtectionInternal(bool bEnable)
{
if (!IsDisposed || Disposing) return;
if (IsDisposed || Disposing) return;
if (bEnable)
{
Visible = true;
Expand Down
4 changes: 2 additions & 2 deletions src/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.14.2")]
[assembly: AssemblyFileVersion("0.14.2")]
[assembly: AssemblyVersion("0.14.3")]
[assembly: AssemblyFileVersion("0.14.3")]
2 changes: 1 addition & 1 deletion version.info
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
:
ColoredPassword:0.14.2
ColoredPassword:0.14.3
ColoredPassword!de:6
ColoredPassword!pl:2
ColoredPassword!pt:2
Expand Down

0 comments on commit fb28aad

Please sign in to comment.