mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-10 16:27:51 -06:00
D6: Changed decorator and swapping to LayerView
This commit is contained in:
parent
647c2f15ba
commit
67ab0cab41
7 changed files with 50 additions and 41 deletions
9
cura/NonSliceableObjectDecorator.py
Normal file
9
cura/NonSliceableObjectDecorator.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
from UM.Scene.SceneNodeDecorator import SceneNodeDecorator
|
||||
|
||||
|
||||
class NonSliceableObjectDecorator(SceneNodeDecorator):
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
|
||||
def isNonSliceable(self):
|
||||
return True
|
Loading…
Add table
Add a link
Reference in a new issue