trigger sidebar status widget repaints on color change

old-commit-hash: 1c89825d86
commatwo_master
Adeeb Shihadeh 4 years ago
parent ec7913cbe5
commit 8b38c339f6
  1. 6
      selfdrive/ui/qt/sidebar.cc

@ -46,7 +46,11 @@ void StatusWidget::paintEvent(QPaintEvent *e){
void StatusWidget::update(QString label, QString msg, QColor c) {
status.setText(label);
substatus.setText(msg);
color = c;
if (color != c) {
color = c;
repaint();
}
return;
}

Loading…
Cancel
Save