mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-25 11:51:41 -07:00
Merge remote-tracking branch 'origin/3.3'
This commit is contained in:
commit
585888f84a
9 changed files with 46 additions and 2 deletions
|
|
@ -24,6 +24,9 @@ Refactored machine manager resulted in less manager classes. Changing settings,
|
|||
*Multiply models faster
|
||||
Significant speed increase when multiplying models.
|
||||
|
||||
*Auto slicing disabled by default
|
||||
The auto slice tool is now disabled by default. Users can still enable the feature in the user preferences dialog.
|
||||
|
||||
*Updated fonts
|
||||
Default font changed to NotoSans to increase readability and consistency with Cura Connect.
|
||||
|
||||
|
|
|
|||
|
|
@ -31,9 +31,10 @@ class ModelChecker(QObject, Extension):
|
|||
|
||||
Application.getInstance().initializationFinished.connect(self._pluginsInitialized)
|
||||
Application.getInstance().getController().getScene().sceneChanged.connect(self._onChanged)
|
||||
Application.getInstance().globalContainerStackChanged.connect(self._onChanged)
|
||||
|
||||
## Pass-through to allow UM.Signal to connect with a pyqtSignal.
|
||||
def _onChanged(self, _):
|
||||
def _onChanged(self, *args, **kwargs):
|
||||
self.onChanged.emit()
|
||||
|
||||
## Called when plug-ins are initialized.
|
||||
|
|
@ -53,7 +54,6 @@ class ModelChecker(QObject, Extension):
|
|||
# has not done yet.
|
||||
global_container_stack = Application.getInstance().getGlobalContainerStack()
|
||||
if global_container_stack is None:
|
||||
Application.getInstance().callLater(lambda: self.onChanged.emit())
|
||||
return False
|
||||
|
||||
material_shrinkage = self._getMaterialShrinkage()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue