Browse Source

Fix (?) incorrect move handle scaling

Equbuxu 1 year ago
parent
commit
9a26c27674
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/PixiEditor.AvaloniaUI/Views/Overlays/Handles/Handle.cs

+ 1 - 0
src/PixiEditor.AvaloniaUI/Views/Overlays/Handles/Handle.cs

@@ -76,6 +76,7 @@ public abstract class Handle : IHandle
         DrawingGroup? glyph = GetResource<DrawingGroup>(key);
         if (glyph != null)
         {
+            glyph.Transform = new MatrixTransform();
             return new HandleGlyph(glyph);
         }