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

fix joystick
old-commit-hash: 3446de2b8e
pull/32199/head
Justin Newberry 1 year ago committed by GitHub
parent 4b2a00ef73
commit b9f6cb0120
  1. 2
      selfdrive/ui/qt/onroad/alerts.h

@ -21,7 +21,7 @@ protected:
cereal::ControlsState::AlertStatus status;
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