Przeglądaj źródła

fixing line brace styling

Pamela Wolf 5 lat temu
rodzic
commit
43c2e23513
1 zmienionych plików z 1 dodań i 2 usunięć
  1. 1 2
      nodeEditor/src/graphEditor.tsx

+ 1 - 2
nodeEditor/src/graphEditor.tsx

@@ -557,8 +557,7 @@ export class GraphEditor extends React.Component<IGraphEditorProps, IGraphEditor
                 let oldY = frameData.editorData.frames[0].y;
                 frameData.editorData.frames[0].x = newX;
                 frameData.editorData.frames[0].y = newY;
-                for (var location of frameData.editorData.locations) 
-                {
+                for (var location of frameData.editorData.locations) {
                     location.x +=  newX - oldX;
                     location.y +=  newY - oldY;       
                 }