Skip to content

Commit

Permalink
MSA: Add missing filename attribute to gazebo plugin tag (moveit#3572)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhaschke authored Feb 26, 2024
1 parent 87148af commit f0626e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion moveit_setup_assistant/src/widgets/simulation_widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,8 @@ std::string SimulationWidget::generateGazeboCompatibleURDF() const

// Add gazebo_ros_control plugin which reads the transmission tags
TiXmlElement* gazebo = uniqueInsert(*root, "gazebo");
TiXmlElement* plugin = uniqueInsert(*gazebo, "plugin", { { "name", "gazebo_ros_control", true } });
TiXmlElement* plugin = uniqueInsert(
*gazebo, "plugin", { { "name", "gazebo_ros_control", true }, { "filename", "libgazebo_ros_control.so", true } });
uniqueInsert(*plugin, "robotNamespace", {}, "/");

// generate new URDF
Expand Down

0 comments on commit f0626e2

Please sign in to comment.