Skip to content

Commit

Permalink
change "show_forces" to "show_pipes"
Browse files Browse the repository at this point in the history
  • Loading branch information
juney-lee committed Nov 6, 2024
1 parent 28aa258 commit be41474
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/compas_rv/scene/thrustobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def draw(self):
self.draw_loads()
if self.session.settings.drawing.thrust.show_selfweight:
self.draw_selfweight()
if self.session.settings.drawing.thrust.show_forces:
if self.session.settings.drawing.thrust.show_pipes:
self.draw_forces()

return self.guids
Expand Down
2 changes: 1 addition & 1 deletion src/compas_rv/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class ForceDrawingSettings(BaseModel):
class ThrustDrawingSettings(BaseModel):
show_reactions: bool = True
show_residuals: bool = False
show_forces: bool = False
show_pipes: bool = False
show_loads: bool = False
show_selfweight: bool = False

Expand Down

0 comments on commit be41474

Please sign in to comment.