소스 검색

fixing line brace styling

Pamela Wolf 5 년 전
부모
커밋
43c2e23513
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  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;       
                 }