Skip to content
Snippets Groups Projects
Commit 1dee79e1 authored by mattminder's avatar mattminder
Browse files

Fixed issue about hiding mask

parent 45e6cb2a
No related branches found
No related tags found
No related merge requests found
......@@ -321,6 +321,11 @@ class PlotCanvas(FigureCanvas):
self.nextmask.set_data((self.nextplotmask % 10 +1 )*(self.nextplotmask != 0))
self.ax3.draw_artist(self.nextmask)
else:
self.currmask.set_data(np.zeros(self.plotmask.shape))
self.previousmask.set_data(np.zeros(self.plotmask.shape))
self.nextmask.set_data(np.zeros(self.plotmask.shape))
# Plot cell numbers
self.ShowCellNumbers()
......
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