Changed colormap for LinePlot.
This commit is contained in:
parent
3683f6c2e9
commit
06805aa5e4
|
@ -383,7 +383,7 @@ class LinePlot(Plot):
|
||||||
self.ax.clear()
|
self.ax.clear()
|
||||||
|
|
||||||
rows, cols = self._bg_matrix.shape
|
rows, cols = self._bg_matrix.shape
|
||||||
self.ax.imshow(self._bg_matrix, cmap=cm.gray, extent=(0.5, cols+0.5, self._ymin, self._ymax))
|
self.ax.imshow(self._bg_matrix, cmap=cm.Greys, extent=(0.5, cols+0.5, self._ymin, self._ymax))
|
||||||
|
|
||||||
if self.project:
|
if self.project:
|
||||||
curr_sel = self.project.get_selection() # get selection object
|
curr_sel = self.project.get_selection() # get selection object
|
||||||
|
|
Reference in New Issue