1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-17 02:52:12 +01:00

TelemetryWidget: tweek datarate text locations.

This commit is contained in:
Mike LaBranche 2012-08-02 20:32:55 -07:00
parent 9ebf6d916a
commit f5bd860be1

View File

@ -140,11 +140,11 @@ void TelemetryMonitorWidget::showTelemetry()
rxNode->update();
}
txSpeed->setPos(graph->boundingRect().right() - 100, txNodes.at(0)->pos().y() - 10);
txSpeed->setPlainText(QString("%0").arg(txValue));
txSpeed->setPos(graph->boundingRect().right() - 110, txNodes.at(0)->pos().y() - 10);
txSpeed->setPlainText(QString("%0").arg(connected ? txValue : 0.0));
rxSpeed->setPos(graph->boundingRect().right() - 100, rxNodes.at(0)->pos().y() - 10);
rxSpeed->setPlainText(QString("%0").arg(rxValue));
rxSpeed->setPos(graph->boundingRect().right() - 110, rxNodes.at(0)->pos().y() - 10);
rxSpeed->setPlainText(QString("%0").arg(connected ? rxValue : 0.0));
update();
}