File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ def isLoading(self):
255255
256256 @property
257257 def isSaving (self ):
258- """ Return True if the graph is currently being loaded . """
258+ """ Return True if the graph is currently being saved . """
259259 return self ._saving
260260
261261 @Slot (str )
Original file line number Diff line number Diff line change @@ -20,6 +20,16 @@ Page {
2020 property alias unsavedDialog: unsavedDialog
2121 property alias workspaceView: workspaceView
2222
23+ readonly property var scenefile: _reconstruction ? _reconstruction .graph .filepath : " " ;
24+
25+ onScenefileChanged: {
26+ // Check if we're not currently saving and emit the currentProjectChanged signal
27+ if (! _reconstruction .graph .isSaving ) {
28+ // Refresh the NodeEditor
29+ nodeEditor .refresh ();
30+ }
31+ }
32+
2333 Settings {
2434 id: settingsUILayout
2535 category: " UILayout"
You can’t perform that action at this time.
0 commit comments