We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5238ac commit 346bb1aCopy full SHA for 346bb1a
lib/matplotlib/cm.py
@@ -375,3 +375,4 @@ def changed(self):
375
376
for key in self.update_dict:
377
self.update_dict[key] = True
378
+ self.stale = True
lib/matplotlib/image.py
@@ -192,14 +192,6 @@ def _interpdr(self):
192
def iterpnames(self):
193
return interpolations_names
194
195
- def set_cmap(self, cmap):
196
- super(_ImageBase, self).set_cmap(cmap)
197
- self.stale = True
198
-
199
- def set_norm(self, norm):
200
- super(_ImageBase, self).set_norm(norm)
201
202
203
def __str__(self):
204
return "AxesImage(%g,%g;%gx%g)" % tuple(self.axes.bbox.bounds)
205
0 commit comments