Browse Source

Improved position of move handle

Krzysztof Krysiński 4 months ago
parent
commit
68c04f0c8a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/PixiEditor/Views/Overlays/PathOverlay/VectorPathOverlay.cs

+ 1 - 1
src/PixiEditor/Views/Overlays/PathOverlay/VectorPathOverlay.cs

@@ -155,7 +155,7 @@ public class VectorPathOverlay : Overlay
             }
         }
 
-        transformHandle.Position = Path.TightBounds.BottomRight + new VecD(1, 1);
+        transformHandle.Position = Path.TightBounds.BottomRight + new VecD(transformHandle.Size.X / ZoomScale, transformHandle.Size.Y / ZoomScale);
         transformHandle.Draw(context);
     }