self.Ultimaker2Radio = self.AddRadioButton("Ultimaker2", style=wx.RB_GROUP)
self.Ultimaker2Radio.SetValue(True)
self.Ultimaker2Radio.Bind(wx.EVT_RADIOBUTTON, self.OnUltimaker2Select)
- self.UltimakerRadio = self.AddRadioButton("Ultimaker")
+ self.UltimakerRadio = self.AddRadioButton("Ultimaker Original")
self.UltimakerRadio.Bind(wx.EVT_RADIOBUTTON, self.OnUltimakerSelect)
self.OtherRadio = self.AddRadioButton(_("Other (Ex: RepRap, MakerBot)"))
self.OtherRadio.Bind(wx.EVT_RADIOBUTTON, self.OnOtherSelect)
profile.putMachineSetting('machine_width', '205')
profile.putMachineSetting('machine_depth', '205')
profile.putMachineSetting('machine_height', '200')
- profile.putMachineSetting('machine_name', 'ultimaker')
+ profile.putMachineSetting('machine_name', 'ultimaker original')
profile.putMachineSetting('machine_type', 'ultimaker')
profile.putMachineSetting('machine_center_is_zero', 'False')
profile.putMachineSetting('gcode_flavor', 'RepRap (Marlin/Sprinter)')