Skip to content

Commit bd5ba8a

Browse files
committed
Skip recovery saving if there's only 1 node
1 parent e8da8ac commit bd5ba8a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

material_maker/panels/graph_edit/graph_edit.gd

+3
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,9 @@ func clear_view() -> void:
388388
func crash_recovery_save() -> void:
389389
if !need_save_crash_recovery:
390390
return
391+
# don't save if there's only a single node
392+
if top_generator.get_child_count() < 2:
393+
return
391394
if save_crash_recovery_path == "":
392395
var dir : Directory = Directory.new()
393396
dir.make_dir_recursive("user://unsaved_projects")

0 commit comments

Comments
 (0)