Skip to content

Commit

Permalink
fix(BindableNSView): Set MasksToBounds to false on init
Browse files Browse the repository at this point in the history
  • Loading branch information
kazo0 committed Feb 8, 2021
1 parent 6e967a6 commit 697ee67
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Uno.UI/Controls/BindableNSView.macOS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ public override void WillRemoveSubview(NSView NSView)
public BindableNSView()
{
Initialize();
WantsLayer = true;
if (Layer != null)
{
Layer.MasksToBounds = false;
}
}

public BindableNSView(IntPtr handle)
Expand Down

0 comments on commit 697ee67

Please sign in to comment.