1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

LP-109 pluginerrorview: add missing breaks

This commit is contained in:
Philippe Renon 2017-07-14 18:41:08 +02:00
parent 7cdc38eb58
commit ba29f527fa

View File

@ -102,9 +102,11 @@ void PluginErrorView::update(PluginSpec *spec)
case PluginSpec::Stopped:
text = tr("Stopped");
tooltip = tr("Plugin was shut down");
break;
case PluginSpec::Deleted:
text = tr("Deleted");
tooltip = tr("Plugin ended its life cycle and was deleted");
break;
}
m_ui->state->setText(text);
m_ui->state->setToolTip(tooltip);