Browse Source

Updated hit size margin to control point

Krzysztof Krysiński 3 months ago
parent
commit
d210595dc0
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/PixiEditor/Views/Overlays/Handles/ControlPointHandle.cs

+ 2 - 0
src/PixiEditor/Views/Overlays/Handles/ControlPointHandle.cs

@@ -9,6 +9,8 @@ public class ControlPointHandle : Handle
 {
     public Handle ConnectedTo { get; set; }
 
+    public override VecD HitSizeMargin { get; set; } = new VecD(10);
+
     public ControlPointHandle(IOverlay owner) : base(owner)
     {
         Size = new VecD(GetResource<double>("AnchorHandleSize"));