Skip to content

Commit

Permalink
Disable return while navigate (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaeyoung-Lim authored Apr 10, 2024
1 parent 2f9b9ae commit 4f2eecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mav_planning_rviz/src/planning_panel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ void PlanningPanel::plannerstateCallback(const planner_msgs::NavigationStatus& m
set_planner_state_buttons_[0]->setDisabled(true); // NAVIGATE
set_planner_state_buttons_[1]->setDisabled(true); // ROLLOUT
set_planner_state_buttons_[2]->setDisabled(false); // ABORT
set_planner_state_buttons_[3]->setDisabled(false); // RETURN
set_planner_state_buttons_[3]->setDisabled(true); // RETURN
break;
}
case PLANNER_STATE::ROLLOUT: {
Expand Down

0 comments on commit 4f2eecc

Please sign in to comment.