Skip to content

Commit be41474

Browse files
committed
change "show_forces" to "show_pipes"
1 parent 28aa258 commit be41474

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/compas_rv/scene/thrustobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def draw(self):
9393
self.draw_loads()
9494
if self.session.settings.drawing.thrust.show_selfweight:
9595
self.draw_selfweight()
96-
if self.session.settings.drawing.thrust.show_forces:
96+
if self.session.settings.drawing.thrust.show_pipes:
9797
self.draw_forces()
9898

9999
return self.guids

src/compas_rv/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class ForceDrawingSettings(BaseModel):
2929
class ThrustDrawingSettings(BaseModel):
3030
show_reactions: bool = True
3131
show_residuals: bool = False
32-
show_forces: bool = False
32+
show_pipes: bool = False
3333
show_loads: bool = False
3434
show_selfweight: bool = False
3535

0 commit comments

Comments
 (0)