Skip to content

Commit

Permalink
Fix increment point size (pyvista#609)
Browse files Browse the repository at this point in the history
  • Loading branch information
banesullivan authored Feb 13, 2020
1 parent 99a6fab commit be8beb7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pyvista/plotting/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -751,6 +751,7 @@ def increment_point_size_and_line_width(self, increment):
prop.SetPointSize(prop.GetPointSize() + increment)
if hasattr(prop, "SetLineWidth"):
prop.SetLineWidth(prop.GetLineWidth() + increment)
self.render()
return


Expand Down

0 comments on commit be8beb7

Please sign in to comment.