Skip to content

Commit

Permalink
fix(tier4_vehicle_rviz_plugin): fix build warning in Humble (autoware…
Browse files Browse the repository at this point in the history
  • Loading branch information
h-ohta authored May 15, 2023
1 parent e34ec19 commit 62737e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ void SteeringAngleDisplay::update(float wall_dt, float ros_dt)
// ((property_handle_angle_scale_->getFloat() * (msg_ptr->data / M_PI) * -180.0));
int handle_image_width = handle_image_.width(), handle_image_height = handle_image_.height();
QPixmap rotate_handle_image;
rotate_handle_image = handle_image_.transformed(rotation_matrix);
rotate_handle_image = handle_image_.transformed(QTransform(rotation_matrix));
rotate_handle_image = rotate_handle_image.copy(
(rotate_handle_image.width() - handle_image_width) / 2,
(rotate_handle_image.height() - handle_image_height) / 2, handle_image_width,
Expand Down

0 comments on commit 62737e5

Please sign in to comment.