mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
Remove another unneded call in the solidview
The check is called a lot, especially if there are a ton of models. CURA-7106
This commit is contained in:
parent
333b2959cd
commit
ac7f27fddc
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ class SolidView(View):
|
|||
|
||||
for node in DepthFirstIterator(scene.getRoot()):
|
||||
if not node.render(renderer):
|
||||
if node.getMeshData() and node.isVisible() and not node.callDecoration("getLayerData"):
|
||||
if node.getMeshData() and node.isVisible():
|
||||
uniforms = {}
|
||||
shade_factor = 1.0
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue