From: nickthetait Date: Tue, 19 May 2015 18:01:02 +0000 (-0600) Subject: Remove broken print one-at-a-time setting. X-Git-Tag: lulzbot-15.02.1-1.01~23 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=2e974a971a95feb9ee235abe686227102f1118b0;p=cura.git Remove broken print one-at-a-time setting. --- diff --git a/Cura/gui/mainWindow.py b/Cura/gui/mainWindow.py index 6a7b541b..b98a2f76 100644 --- a/Cura/gui/mainWindow.py +++ b/Cura/gui/mainWindow.py @@ -152,8 +152,8 @@ class mainWindow(wx.Frame): toolsMenu.AppendSeparator() self.allAtOnceItem = toolsMenu.Append(-1, _("Print all at once"), kind=wx.ITEM_RADIO) self.Bind(wx.EVT_MENU, self.onOneAtATimeSwitch, self.allAtOnceItem) - self.oneAtATime = toolsMenu.Append(-1, _("Print one at a time"), kind=wx.ITEM_RADIO) - self.Bind(wx.EVT_MENU, self.onOneAtATimeSwitch, self.oneAtATime) + #self.oneAtATime = toolsMenu.Append(-1, _("Print one at a time"), kind=wx.ITEM_RADIO) + #self.Bind(wx.EVT_MENU, self.onOneAtATimeSwitch, self.oneAtATime) if profile.getPreference('oneAtATime') == 'True': self.oneAtATime.Check(True) else: