mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
CURA-4400 Bugfix do not handle layer scene nodes in solidview
This commit is contained in:
parent
63e679e4a0
commit
095d9fbdf6
2 changed files with 5 additions and 5 deletions
|
@ -78,7 +78,7 @@ class SolidView(View):
|
||||||
|
|
||||||
for node in DepthFirstIterator(scene.getRoot()):
|
for node in DepthFirstIterator(scene.getRoot()):
|
||||||
if not node.render(renderer):
|
if not node.render(renderer):
|
||||||
if node.getMeshData() and node.isVisible():
|
if node.getMeshData() and node.isVisible() and not node.callDecoration("getLayerData"):
|
||||||
uniforms = {}
|
uniforms = {}
|
||||||
shade_factor = 1.0
|
shade_factor = 1.0
|
||||||
|
|
||||||
|
|
|
@ -43,10 +43,10 @@
|
||||||
{
|
{
|
||||||
"default_value":
|
"default_value":
|
||||||
[
|
[
|
||||||
[-41.9, -45.8],
|
[ -41.9, -45.8 ],
|
||||||
[-41.9, 33.9],
|
[ -41.9, 33.9 ],
|
||||||
[59.9, 33.9],
|
[ 59.9, 33.9 ],
|
||||||
[59.9, -45.8]
|
[ 59.9, -45.8 ]
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"machine_gcode_flavor": { "default_value": "Griffin" },
|
"machine_gcode_flavor": { "default_value": "Griffin" },
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue