Skip to content

Commit

Permalink
chore: fix bordervisual hittesting
Browse files Browse the repository at this point in the history
  • Loading branch information
ramezgerges committed Oct 25, 2024
1 parent 9f8bb5b commit db7c5f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Uno.UI.Composition/Composition/BorderVisual.skia.cs
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,6 @@ private static unsafe SKPath CreateBorderPath(SKRect innerArea, SKRect outerArea
internal override bool HitTest(Point point)
{
UpdatePathsAndCornerClip();
return (_borderShape?.HitTest(point) ?? false) || (_backgroundShape?.HitTest(point) ?? false) || base.HitTest(point);
return (_borderShape?.HitTest(point) ?? false) || (_backgroundShape?.HitTest(point) ?? false);
}
}

0 comments on commit db7c5f9

Please sign in to comment.