mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 00:58:58 +08:00
Fix error in SolidView when there is a model but no printer
This commit is contained in:
parent
1848bb5cc4
commit
c95cc7a21b
@ -62,8 +62,11 @@ class SolidView(View):
|
|||||||
|
|
||||||
uniforms = {}
|
uniforms = {}
|
||||||
if not multi_extrusion:
|
if not multi_extrusion:
|
||||||
material = global_container_stack.findContainer({ "type": "material" })
|
if global_container_stack:
|
||||||
material_color = material.getMetaDataEntry("color_code", default = self._extruders_model.defaultColors[0]) if material else self._extruders_model.defaultColors[0]
|
material = global_container_stack.findContainer({ "type": "material" })
|
||||||
|
material_color = material.getMetaDataEntry("color_code", default = self._extruders_model.defaultColors[0]) if material else self._extruders_model.defaultColors[0]
|
||||||
|
else:
|
||||||
|
material_color = self._extruders_model.defaultColors[0]
|
||||||
else:
|
else:
|
||||||
# Get color to render this mesh in from ExtrudersModel
|
# Get color to render this mesh in from ExtrudersModel
|
||||||
extruder_index = 0
|
extruder_index = 0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user