Skip to content

Commit

Permalink
fix: build error on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ajpinedam committed May 4, 2020
1 parent 9698914 commit 6fffaa8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/Uno.UI/UI/Xaml/Controls/PasswordBox/PasswordBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ public partial class PasswordBox : TextBox
private Button _revealButton;
private readonly SerialDisposable _revealButtonSubscription = new SerialDisposable();

public PasswordBox() : base(true) { }
public PasswordBox()
#if __MACOS__
: base(true)
#endif
{

}

protected override void OnLoaded()
{
Expand Down

0 comments on commit 6fffaa8

Please sign in to comment.