mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Ensure that min/max feedrate & thickness gets defined in init
This commit is contained in:
parent
9c2f8a94d5
commit
511eba28b6
1 changed files with 5 additions and 0 deletions
|
@ -83,6 +83,11 @@ class SimulationView(CuraView):
|
||||||
self._simulationview_composite_shader = None # type: Optional["ShaderProgram"]
|
self._simulationview_composite_shader = None # type: Optional["ShaderProgram"]
|
||||||
self._old_composite_shader = None # type: Optional["ShaderProgram"]
|
self._old_composite_shader = None # type: Optional["ShaderProgram"]
|
||||||
|
|
||||||
|
self._max_feedrate = sys.float_info.min
|
||||||
|
self._min_feedrate = sys.float_info.max
|
||||||
|
self._max_thickness = sys.float_info.min
|
||||||
|
self._min_thickness = sys.float_info.max
|
||||||
|
|
||||||
self._global_container_stack = None # type: Optional[ContainerStack]
|
self._global_container_stack = None # type: Optional[ContainerStack]
|
||||||
self._proxy = None
|
self._proxy = None
|
||||||
self._controller.getScene().getRoot().childrenChanged.connect(self._onSceneChanged)
|
self._controller.getScene().getRoot().childrenChanged.connect(self._onSceneChanged)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue