UI: fix reset calibration description

pull/25076/head
Adeeb Shihadeh 3 years ago
parent dc3d94d662
commit ff3f6de149
  1. 6
      selfdrive/ui/qt/widgets/controls.cc

@ -45,7 +45,6 @@ AbstractControl::AbstractControl(const QString &title, const QString &desc, cons
main_layout->addLayout(hlayout);
// description
if (!desc.isEmpty()) {
description = new QLabel(desc);
description->setContentsMargins(40, 20, 40, 20);
description->setStyleSheet("font-size: 40px; color: grey");
@ -57,9 +56,12 @@ AbstractControl::AbstractControl(const QString &title, const QString &desc, cons
if (!description->isVisible()) {
emit showDescription();
}
if (!description->text().isEmpty()) {
description->setVisible(!description->isVisible());
});
}
});
main_layout->addStretch();
}

Loading…
Cancel
Save