1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-18 08:54:15 +01:00

OP-1174 auto update wizard - error messages are now shown in red

This commit is contained in:
Philippe Renon 2014-05-02 08:53:40 +02:00
parent 6dd88da492
commit 9573e141aa

View File

@ -37,6 +37,7 @@ void AutoUpdatePage::enableButtons(bool enable = false)
void AutoUpdatePage::updateStatus(uploader::AutoUpdateStep status, QVariant value)
{
QString msg;
switch (status) {
case uploader::WAITING_DISCONNECT:
disableButtons();
@ -94,7 +95,7 @@ void AutoUpdatePage::updateStatus(uploader::AutoUpdateStep status, QVariant valu
if (msg.isEmpty()) {
msg = tr("Something went wrong, you will have to manually upgrade the board using the uploader plugin.");
}
ui->statusLabel->setText(msg);
ui->statusLabel->setText(QString("<font color='red'>%1</font>").arg(msg));
break;
}
}