Change RViz tool display name
Is it possible to change the display name of a tool in Rviz
? I have two robots running at once and want to be able to use the 2D Pose Estimate
and 2D Nav Goal
for each robot, but would like to give them custom names so that I know which tool works with which robot.
I've tried playing around with a custom configuration file, but I've only been able to add multiple instances of the same tool and change what topic they publish too. For example:
Tools:
...
- Class: rviz/SetInitialPose
Topic: /robot1/initialpose
- Class: rviz/SetGoal
Topic: /robot1/move_base_simple/goal
- Class: rviz/SetInitialPose
Topic: /robot2/initialpose
- Class: rviz/SetGoal
Topic: /robot2/move_base_simple/goal
will give me two sets of 2D Pose Estimate
and 2D Nav Goal
buttons to use. However, I think that it is not so clear which is which and I could accidentally set the wrong pose or goal pose to the wrong robot. So, I'd like to make them say robot1 Pose Estimate
, robot1 Nav Goal
, robot2 Pose Estimate
and robot2 Nav Goal
via a configuration file or some other method that doesn't require me to hack the source.