Skip to content

Commit

Permalink
Make aborted nodes grey in dotgraph
Browse files Browse the repository at this point in the history
  • Loading branch information
Levi-Armstrong committed Aug 6, 2024
1 parent 28520f8 commit ecd9bdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tesseract_task_composer/core/src/task_composer_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ int TaskComposerNode::run(TaskComposerContext& context, OptionalTaskComposerExec
info->input_keys = input_keys_;
info->output_keys = output_keys_;
info->return_value = 0;
info->color = "white";
info->color = "grey";
info->status_code = 0;
info->status_message = "Aborted";
info->aborted_ = true;
Expand Down

0 comments on commit ecd9bdb

Please sign in to comment.