Explorar el Código

Fix navigator crash when mouse moves over it

CPKreuz hace 1 año
padre
commit
9b6147c1d0
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      src/PixiEditor.AvaloniaUI/Views/Main/Navigation.axaml.cs

+ 3 - 0
src/PixiEditor.AvaloniaUI/Views/Main/Navigation.axaml.cs

@@ -150,6 +150,9 @@ internal partial class Navigation : UserControl
         int x = (int)mousePosConverted.X;
         int y = (int)mousePosConverted.Y;
 
+        if (x < 0 || x > Document.Width || y < 0 || y > Document.Height)
+            return;
+        
         Thickness newPos = new Thickness(x, y, 0, 0);
 
         if (ColorCursorPosition == newPos)