mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 10:47:49 -06:00
Merge branch 'master' of https://github.com/Ultimaker/PluggableCura
This commit is contained in:
commit
74884032d0
1 changed files with 5 additions and 2 deletions
|
@ -166,8 +166,11 @@ class CuraEngineBackend(Backend):
|
||||||
|
|
||||||
## TODO: Neith settings need to be moved to their own backend.
|
## TODO: Neith settings need to be moved to their own backend.
|
||||||
def _sendSettings(self):
|
def _sendSettings(self):
|
||||||
self._sendSettings_neith() if self._settings.getSettingValueByKey('wireframe') else self._sendSettings_normal()
|
if self._settings.getSettingValueByKey('wireframe'):
|
||||||
|
self._sendSettings_neith()
|
||||||
|
else:
|
||||||
|
self._sendSettings_normal()
|
||||||
|
|
||||||
def _sendSettings_neith(self):
|
def _sendSettings_neith(self):
|
||||||
extruder = 0
|
extruder = 0
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue