From 2e974a971a95feb9ee235abe686227102f1118b0 Mon Sep 17 00:00:00 2001 From: nickthetait Date: Tue, 19 May 2015 12:01:02 -0600 Subject: [PATCH] Remove broken print one-at-a-time setting. --- Cura/gui/mainWindow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: -- 2.30.2