You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am extensively using the array edition from rqt_reconfigure, and I have noticed that editing an array of booleans makes the plugin crash. This is due to the json parser, which expects booleans to be written as true and false (i.e. lower case), while the bool arrays are by default written as True and False (i.e. the python way).
Adding the following lines in the edit_finished() method in the param_editors.py file solves the problem:
Hi there,
I am extensively using the array edition from rqt_reconfigure, and I have noticed that editing an array of booleans makes the plugin crash. This is due to the json parser, which expects booleans to be written as
true
andfalse
(i.e. lower case), while the bool arrays are by default written asTrue
andFalse
(i.e. the python way).Adding the following lines in the
edit_finished()
method in theparam_editors.py
file solves the problem:System: Ubuntu 22.04
Ros2 humble
Local build of rqt_reconfigure on the rolling branch, no modifications.
The text was updated successfully, but these errors were encountered: