Przeglądaj źródła

missing semicolon oopsie

flabbet 9 miesięcy temu
rodzic
commit
4a16ae645e

+ 5 - 3
src/PixiEditor/Views/Main/ViewportControls/ViewportOverlays.cs

@@ -297,11 +297,13 @@ internal class ViewportOverlays
         {
             Source = Viewport, Path = "Document.TransformViewModel.InternalState", Mode = BindingMode.TwoWay
         };
-        
+
         Binding passThroughPointerPressedBinding = new()
         {
-            Source = Viewport, Path = "Document.TransformViewModel.PassThroughPointerPressedCommand", Mode = BindingMode.OneWay
-        }
+            Source = Viewport,
+            Path = "Document.TransformViewModel.PassThroughPointerPressedCommand",
+            Mode = BindingMode.OneWay
+        };
         
         Binding showHandlesBinding = new()
         {