Explorar el Código

fixing line brace styling

Pamela Wolf hace 5 años
padre
commit
43c2e23513
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  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;       
                 }