pull/35519/head
Shane Smiskol 2 weeks ago
parent 4c4851389f
commit d7f03ab189
  1. 6
      selfdrive/ui/qt/offroad/settings.cc

@ -298,10 +298,7 @@ DevicePanel::DevicePanel(SettingsWindow *parent) : ListWidget(parent) {
} }
void DevicePanel::updateCalibDescription() { void DevicePanel::updateCalibDescription() {
// QString desc = tr("openpilot continuously calibrates the device's orientation and learns your vehicle's steering response. Resetting is rarely required."); QString desc = tr("\nopenpilot requires the device to be mounted within 4° left or right and within 5° up or 9° down.");
QString desc = tr("");
desc += tr("\nopenpilot requires the device to be mounted within 4° left or right and within 5° up or 9° down.");
std::string calib_bytes = params.get("CalibrationParams"); std::string calib_bytes = params.get("CalibrationParams");
if (!calib_bytes.empty()) { if (!calib_bytes.empty()) {
try { try {
@ -332,7 +329,6 @@ void DevicePanel::updateCalibDescription() {
qInfo() << "invalid LiveDelay"; qInfo() << "invalid LiveDelay";
} }
} }
if (lag_perc < 100) { if (lag_perc < 100) {
desc += tr("\n\nSteering lag calibration is %1% complete.").arg(lag_perc); desc += tr("\n\nSteering lag calibration is %1% complete.").arg(lag_perc);
} else { } else {

Loading…
Cancel
Save