Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornickthetait <tait@alephobjects.com>2015-08-21 18:54:58 +0300
committernickthetait <tait@alephobjects.com>2015-08-21 18:54:58 +0300
commit4e21874a9d546dea742ab6858d91b858279d0535 (patch)
tree8f07ac56bfb6d6844b9cb7c46f5c8c3b131460a9
parentb3e317eebd5a62eb9aa1806430dbfd683cf0a3ac (diff)
Tell user to connect and power on 3D printer before attempting to flash firmware
Brilliant find during user testing.
-rw-r--r--Cura/gui/configWizard.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py
index 5a08c35bf0..08afffaebc 100644
--- a/Cura/gui/configWizard.py
+++ b/Cura/gui/configWizard.py
@@ -1394,7 +1394,8 @@ class LulzbotFirmwareUpdatePage(InfoPage):
"and ultimately makes your printer work."))
self.AddHiddenSeperator()
self.AddText(_("When changing tool heads it is neccesary to update the firmware.\n" +
- "Please disconnect all 3D printers except for the one you are currently configuring."))
+ "Please connect (with a USB cable) the printer you are currently configuring and power it on.\n" +
+ "Disconnecting all other 3D printers helps reduce confusion."))
self.AddHiddenSeperator()
upgradeButton, skipUpgradeButton = self.AddDualButton(_('Flash the firmware'), _('Skip upgrade'))
upgradeButton.Bind(wx.EVT_BUTTON, self.OnUpgradeClick)