From: smorloc Date: Tue, 22 Jan 2013 19:14:47 +0000 (-0500) Subject: Fixed class name typo sliceProgessPanel X-Git-Tag: 13.03~64^2~11 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=c89c190e672efea58ffedc076a393334a94d0e52;p=cura.git Fixed class name typo sliceProgessPanel --- diff --git a/Cura/gui/mainWindow.py b/Cura/gui/mainWindow.py index d034e58f..b0026d4d 100644 --- a/Cura/gui/mainWindow.py +++ b/Cura/gui/mainWindow.py @@ -7,7 +7,7 @@ import webbrowser from Cura.gui import configBase from Cura.gui import expertConfig from Cura.gui import preview3d -from Cura.gui import sliceProgessPanel +from Cura.gui import sliceProgressPanel from Cura.gui import alterationPanel from Cura.gui import pluginPanel from Cura.gui import preferencesDialog @@ -353,7 +353,7 @@ class mainWindow(wx.Frame): oldProfile = profile.getGlobalProfileString() self.simpleSettingsPanel.setupSlice() #Create a progress panel and add it to the window. The progress panel will start the Skein operation. - spp = sliceProgessPanel.sliceProgessPanel(self, self, self.filelist) + spp = sliceProgressPanel.sliceProgressPanel(self, self, self.filelist) self.sizer.Add(spp, 0, flag=wx.EXPAND) self.sizer.Layout() newSize = self.GetSize() diff --git a/Cura/gui/sliceProgressPanel.py b/Cura/gui/sliceProgressPanel.py index e35d6ed5..c1a992c5 100644 --- a/Cura/gui/sliceProgressPanel.py +++ b/Cura/gui/sliceProgressPanel.py @@ -15,7 +15,7 @@ from Cura.util import sliceRun from Cura.util import exporer from Cura.util import gcodeInterpreter -class sliceProgessPanel(wx.Panel): +class sliceProgressPanel(wx.Panel): def __init__(self, mainWindow, parent, filelist): wx.Panel.__init__(self, parent, -1) self.mainWindow = mainWindow