chiark / gitweb /
timelaps -> timelapse
[cura.git] / Cura / gui / printWindow.py
index e79d5c2e2f89d5b25b75d5a94aaa7218b786111f..20ffebc4aeb5c8b3d73ca722da47968851e95c9e 100644 (file)
@@ -280,7 +280,7 @@ class printWindow(wx.Frame):
                        sizer = wx.GridBagSizer(2, 2)
                        self.camPage.SetSizer(sizer)
 
-                       self.timelapsEnable = wx.CheckBox(self.camPage, -1, 'Enable timelaps movie recording')
+                       self.timelapsEnable = wx.CheckBox(self.camPage, -1, 'Enable timelapse movie recording')
                        sizer.Add(self.timelapsEnable, pos=(0, 0), span=(1, 2), flag=wx.EXPAND)
 
                        pages = self.cam.propertyPages()
@@ -443,7 +443,7 @@ class printWindow(wx.Frame):
                        return
                self.currentZ = -1
                if self.cam != None and self.timelapsEnable.GetValue():
-                       self.cam.startTimelaps(self.filename[: self.filename.rfind('.')] + ".mpg")
+                       self.cam.startTimelapse(self.filename[: self.filename.rfind('.')] + ".mpg")
                self.machineCom.printGCode(self.gcodeList)
                self.UpdateButtonStates()
 
@@ -585,7 +585,7 @@ class printWindow(wx.Frame):
        def mcStateChange(self, state):
                if self.machineCom != None:
                        if state == self.machineCom.STATE_OPERATIONAL and self.cam != None:
-                               self.cam.endTimelaps()
+                               self.cam.endTimelapse()
                        if state == self.machineCom.STATE_OPERATIONAL:
                                taskbar.setBusy(self, False)
                        if self.machineCom.isClosedOrError():