We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 825820f + 73fe016 commit 3dc4676Copy full SHA for 3dc4676
1 file changed
material_maker/panels/graph_edit/graph_edit.gd
@@ -546,7 +546,8 @@ func update_tab_title() -> void:
546
var title = "[unnamed]"
547
if not save_path.is_empty():
548
title = save_path.right(-(save_path.rfind("/")+1))
549
- generator.set_meta("file_path", title)
+ if generator:
550
+ generator.set_meta("file_path", title)
551
if need_save:
552
title += " *"
553
if get_parent().has_method("set_tab_title"):
0 commit comments