Skip to content

Commit 99e5edf

Browse files
authored
Merge pull request #2615 from alicevision/fix/returnGraphLoadStatus
Fix projects disappearing from the list of recent projects
2 parents 908312a + a0398c4 commit 99e5edf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meshroom/core/graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def load(self, filepath, setupProjectFile=True, importProject=False, publishOutp
267267
"""
268268
self._loading = True
269269
try:
270-
self._load(filepath, setupProjectFile, importProject, publishOutputs)
270+
return self._load(filepath, setupProjectFile, importProject, publishOutputs)
271271
finally:
272272
self._loading = False
273273

0 commit comments

Comments
 (0)