Skip to content
Snippets Groups Projects
Commit 8416b2be authored by Ewan Cook's avatar Ewan Cook
Browse files

Revert "refs #23260 fix labels not updating when selecting errors"

This reverts commit c5461979.
parent 02cf7984
No related branches found
No related tags found
No related merge requests found
......@@ -116,10 +116,12 @@ class PlotView(QtGui.QWidget):
for name, plot in iteritems(self.plots):
workspaces = self.workspaces[name]
self.workspaces[name] = []
x, y = plot.get_xlim(), plot.get_ylim()
plot.clear()
for workspace in workspaces:
self.plot(name, workspace)
self._set_bounds(name)
plot.set_xlim(x)
plot.set_ylim(y)
self._replay_additions(name)
def _replay_additions(self, name):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment