Skip to content

Commit

Permalink
ui: fix non-updating text2 alerts (commaai#32256)
Browse files Browse the repository at this point in the history
fix joystick
  • Loading branch information
jnewb1 authored Apr 19, 2024
1 parent a824bd7 commit 3446de2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion selfdrive/ui/qt/onroad/alerts.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class OnroadAlerts : public QWidget {
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;
}
};

Expand Down

0 comments on commit 3446de2

Please sign in to comment.