Skip to content

Commit

Permalink
fix(nav2_costmap_2d): make obstacle layer not current on enabled toggle
Browse files Browse the repository at this point in the history
Signed-off-by: Kemal Bektas <kemal.bektas@node-robotics.com>
  • Loading branch information
Kemal Bektas committed Jul 2, 2024
1 parent 137b93b commit fded988
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nav2_costmap_2d/plugins/obstacle_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -307,8 +307,11 @@ ObstacleLayer::dynamicParametersCallback(
max_obstacle_height_ = parameter.as_double();
}
} else if (param_type == ParameterType::PARAMETER_BOOL) {
if (param_name == name_ + "." + "enabled") {
if (param_name == name_ + "." + "enabled" && enabled_ != parameter.as_bool()) {
enabled_ = parameter.as_bool();
if (enabled_) {
current_ = false;

Check warning on line 313 in nav2_costmap_2d/plugins/obstacle_layer.cpp

View check run for this annotation

Codecov / codecov/patch

nav2_costmap_2d/plugins/obstacle_layer.cpp#L313

Added line #L313 was not covered by tests
}
} else if (param_name == name_ + "." + "footprint_clearing_enabled") {
footprint_clearing_enabled_ = parameter.as_bool();
}
Expand Down

0 comments on commit fded988

Please sign in to comment.