Commit 67d27d79 authored by Don Gagne's avatar Don Gagne

Better help text

parent 059df23d
......@@ -94,6 +94,7 @@ Rectangle {
height: 300
readOnly: true
frameVisible: false
text: qsTr("Please disconnect all connections and unplug board from USB before selecting Upgrade.")
style: TextAreaStyle {
textColor: qgcPal.text
backgroundColor: qgcPal.windowShade
......
......@@ -84,7 +84,8 @@ void FirmwareUpgradeController::_foundBoard(bool firstTry, const QString portNam
{
if (firstTry) {
// Board is still plugged
_appendStatusLog(tr("You must unplug your board before beginning the Firmware Upgrade process."));
_appendStatusLog(tr("Please unplug your board before beginning the Firmware Upgrade process."));
_appendStatusLog(tr("Click Upgrade again once the board is unplugged."));
_cancel();
} else {
_portName = portName;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment