mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 23:46:22 -06:00
That is not how we do an if.
This commit is contained in:
parent
8cbf2456ac
commit
ceb6f43b11
1 changed files with 5 additions and 2 deletions
|
@ -165,8 +165,11 @@ class CuraEngineBackend(Backend):
|
||||||
self._socket.sendMessage(msg)
|
self._socket.sendMessage(msg)
|
||||||
|
|
||||||
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