瀏覽代碼

Merge pull request #8983 from BabylonJS/msDestiny14/nme

Fix to auto expanding frames
PirateJC 5 年之前
父節點
當前提交
0ef30e60f4
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      nodeEditor/src/diagram/graphFrame.ts

+ 1 - 1
nodeEditor/src/diagram/graphFrame.ts

@@ -1299,7 +1299,7 @@ export class GraphFrame {
             height: this._height,
             height: this._height,
             color: this._color.asArray(),
             color: this._color.asArray(),
             name: this.name,
             name: this.name,
-            isCollapsed: false, //keeping closed to make reimporting cleaner
+            isCollapsed: true, //keeping closed to make reimporting cleaner
             blocks: this.nodes.map(n => n.block.uniqueId),
             blocks: this.nodes.map(n => n.block.uniqueId),
             comments: this._comments
             comments: this._comments
         }
         }