self.PrintrbotRadio.Bind(wx.EVT_RADIOBUTTON, self.OnPrintrbotSelect)
self.OtherRadio = self.AddRadioButton(_("Other (Ex: RepRap, MakerBot, Witbox)"))
self.OtherRadio.Bind(wx.EVT_RADIOBUTTON, self.OnOtherSelect)
- self.AddSeperator()
- self.AddText(_("The collection of anonymous usage information helps with the continued improvement of Cura."))
- self.AddText(_("This does NOT submit your models online nor gathers any privacy related information."))
- self.SubmitUserStats = self.AddCheckbox(_("Submit anonymous usage information:"))
- self.AddText(_("For full details see: http://wiki.ultimaker.com/Cura:stats"))
- self.SubmitUserStats.SetValue(False)
+ #self.AddSeperator()
+ #self.AddText(_("The collection of anonymous usage information helps with the continued improvement of Cura."))
+ #self.AddText(_("This does NOT submit your models online nor gathers any privacy related information."))
+ #self.SubmitUserStats = self.AddCheckbox(_("Submit anonymous usage information:"))
+ #self.AddText(_("For full details see: http://wiki.ultimaker.com/Cura:stats"))
+ #self.SubmitUserStats.SetValue(False)
def OnUltimaker2Select(self, e):
wx.wizard.WizardPageSimple.Chain(self, self.GetParent().ultimaker2ReadyPage)
profile.putProfileSetting('nozzle_size', '0.5')
profile.checkAndUpdateMachineName()
profile.putProfileSetting('wall_thickness', float(profile.getProfileSetting('nozzle_size')) * 2)
- if self.SubmitUserStats.GetValue():
- profile.putPreference('submit_slice_information', 'True')
- else:
- profile.putPreference('submit_slice_information', 'False')
+ #if self.SubmitUserStats.GetValue():
+ # profile.putPreference('submit_slice_information', 'True')
+ #else:
+ # profile.putPreference('submit_slice_information', 'False')
class SelectParts(InfoPage):
configBase.TitleRow(right, _("Cura settings"))
configBase.SettingRow(right, 'auto_detect_sd')
configBase.SettingRow(right, 'check_for_updates')
- configBase.SettingRow(right, 'submit_slice_information')
+ #configBase.SettingRow(right, 'submit_slice_information')
self.okButton = wx.Button(right, -1, 'Ok')
right.GetSizer().Add(self.okButton, (right.GetSizer().GetRows(), 0), flag=wx.BOTTOM, border=5)
time.sleep(0.1)
return self._gcodeLoadCallback(self, progress)
- def submitInfoOnline(self):
+ '''def submitInfoOnline(self):
if profile.getPreference('submit_slice_information') != 'True':
return
if version.isDevVersion():
f.close()
except:
import traceback
- traceback.print_exc()
+ traceback.print_exc()'''
class Engine(object):
"""