Browse Source

When toggling auto-slice, force a re-slice

CURA-5997
Jaime van Kessel 6 years ago
parent
commit
5b4fad3c08
1 changed files with 4 additions and 0 deletions
  1. 4 0
      resources/qml/ActionPanel/SliceProcessWidget.qml

+ 4 - 0
resources/qml/ActionPanel/SliceProcessWidget.qml

@@ -137,6 +137,10 @@ Column
         {
             var autoSlice = UM.Preferences.getValue("general/auto_slice")
             prepareButtons.autoSlice = autoSlice
+            if(autoSlice)
+            {
+                CuraApplication.backend.forceSlice()
+            }
         }
     }