Skip to content

Commit

Permalink
Merge branch 'axes' into axisLabels
Browse files Browse the repository at this point in the history
  • Loading branch information
aksharsarvesh committed Aug 2, 2024
1 parent 33b1925 commit e8a8d9a
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions pydm/widgets/baseplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -640,15 +640,13 @@ def log_mode(self, log_mode: bool) -> None:

def setHidden(self, shouldHide: bool):
if shouldHide:
self.hide()
for curve in self._curves:
curve.hide

curve.hide()
self.hide()
else:
self.show()
for curve in self._curves:
curve.show()
# Potentially can be fixed to not show curves previously marked hidden
self.show()

def to_dict(self) -> OrderedDict:
"""
Expand Down

0 comments on commit e8a8d9a

Please sign in to comment.