Skip to content

Commit

Permalink
fix(rviz_plugin): fx traffic light and velocity factor rviz plugin (a…
Browse files Browse the repository at this point in the history
…utowarefoundation#3598)

fix(rviz_plugin); fx traffic light and velocity factor rviz plugin

Signed-off-by: Mingyu Li <mingyu.li@tier4.jp>
  • Loading branch information
taikitanaka3 authored and Mingyu1991 committed Jun 26, 2023
1 parent 8fe6147 commit 6e5c522
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ void VelocitySteeringFactorsPanel::onVelocityFactors(const VelocityFactorArray::
velocity_factors_table_->setCellWidget(i, 3, label);
}
}
velocity_factors_table_->update();
}

void VelocitySteeringFactorsPanel::onSteeringFactors(const SteeringFactorArray::ConstSharedPtr msg)
Expand Down Expand Up @@ -317,6 +318,7 @@ void VelocitySteeringFactorsPanel::onSteeringFactors(const SteeringFactorArray::
steering_factors_table_->setCellWidget(i, 5, label);
}
}
steering_factors_table_->update();
}
} // namespace rviz_plugins

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,7 @@ void TrafficLightPublishPanel::onTimer()
traffic_table_->setCellWidget(i, 3, status_label);
traffic_table_->setCellWidget(i, 4, confidence_label);
}
traffic_table_->update();
}

void TrafficLightPublishPanel::onVectorMap(const HADMapBin::ConstSharedPtr msg)
Expand Down

0 comments on commit 6e5c522

Please sign in to comment.