ui: fix non-updating text2 alerts (#32256)

fix joystick
pull/32155/head
Justin Newberry 1 year ago committed by GitHub
parent a824bd75ef
commit 3446de2b8e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      selfdrive/ui/qt/onroad/alerts.h

@ -21,7 +21,7 @@ protected:
cereal::ControlsState::AlertStatus status; cereal::ControlsState::AlertStatus status;
bool equal(const Alert &other) const { bool equal(const Alert &other) const {
return text1 == other.text1 && other.text2 == other.text2 && type == other.type; return text1 == other.text1 && text2 == other.text2 && type == other.type;
} }
}; };

Loading…
Cancel
Save