We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8da8ac commit bd5ba8aCopy full SHA for bd5ba8a
material_maker/panels/graph_edit/graph_edit.gd
@@ -388,6 +388,9 @@ func clear_view() -> void:
388
func crash_recovery_save() -> void:
389
if !need_save_crash_recovery:
390
return
391
+ # don't save if there's only a single node
392
+ if top_generator.get_child_count() < 2:
393
+ return
394
if save_crash_recovery_path == "":
395
var dir : Directory = Directory.new()
396
dir.make_dir_recursive("user://unsaved_projects")
0 commit comments