Skip to content

Commit

Permalink
Updated the cadDoodle workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
madhephaestus committed Jul 25, 2024
1 parent ff4fcf2 commit d7fdd4b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -854,10 +854,12 @@ public void run() {
// duplicate
}
});
Axis axis = new Axis(showRuler.isSelected());
BowlerStudio.runLater(() -> axis.getTransforms().add(currentCsg.getManipulator()));
axisMap.put(current, axis);
BowlerStudio.runLater(() -> lookGroup.getChildren().add(axis));
if(showRuler!=null) {
Axis axis = new Axis(showRuler.isSelected());
BowlerStudio.runLater(() -> axis.getTransforms().add(currentCsg.getManipulator()));
axisMap.put(current, axis);
BowlerStudio.runLater(() -> lookGroup.getChildren().add(axis));
}
}

// Log.warning("Adding new axis");
Expand Down

0 comments on commit d7fdd4b

Please sign in to comment.