-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running on ROS2 Rolling Jammy #108
Comments
#109 should've fixed the issue. |
I think #109 has enough changes to get rqt_bag up and running, but there are more changes required to prevent runtime errors. Some of those are covered in ijnek@a0286d9 and involve data types being casted to the expected type before being passed to methods. Could we either re-open or open another issue to track these? |
I installed ros2 rolling via the apt (which comes with rqt_bag) and its definitely not fixed.
|
I've opened #111 to track the ongoing work. |
The following error occurs when running
ros2 run rqt_bag rqt_bag
orrqt
and adding the rqt bag widget manuallyEnvironment:
This is a detailed example for ros-visualization/rqt#266. Although this can be resolved in rqt_bag by ensuring the argument type matches that expected by the method (ie.
self._topic_font.setPointSize(int(self._topic_font_size))
orself._topic_font.setPointSizeF(self._topic_font_size)
) the issue exists in quite a lot of places for rqt_bag, and will very likely exist across any library that depends onpython_qt_binding
.I've put up a branch that seems to work (for at least some basic preliminary testing).
The text was updated successfully, but these errors were encountered: