Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion material_maker/main_window.gd
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ func change_theme(theme_name) -> void:
RenderingServer.set_default_clear_color(Color(0.14, 0.17,0.23))
else:
RenderingServer.set_default_clear_color(
Color("4d4d4d") if "light" in theme_name else Color("1f1f1f"))
Color.WHITE if "light" in theme_name else Color("1f1f1f"))
$NodeFactory.on_theme_changed()

func _on_SetTheme_id_pressed(id) -> void:
Expand Down
Loading