From 06805aa5e40a91a1087f36122e1b7ae0c6b792b4 Mon Sep 17 00:00:00 2001 From: tangstad Date: Thu, 27 Apr 2006 12:05:20 +0000 Subject: [PATCH] Changed colormap for LinePlot. --- system/plots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/plots.py b/system/plots.py index d466ca4..fb9edb8 100644 --- a/system/plots.py +++ b/system/plots.py @@ -383,7 +383,7 @@ class LinePlot(Plot): self.ax.clear() 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: curr_sel = self.project.get_selection() # get selection object