We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6370a6a commit ba8c65dCopy full SHA for ba8c65d
lib/matplotlib/collections.py
@@ -500,6 +500,12 @@ def update_from(self, other):
500
self._linestyles = other._linestyles
501
self._pickradius = other._pickradius
502
503
+ # update_from for scalarmappable
504
+ self._A = other._A
505
+ self.norm = other.norm
506
+ self.cmap = other.cmap
507
+ # self.update_dict = other.update_dict # do we need to copy this? -JJL
508
+
509
# these are not available for the object inspector until after the
510
# class is built so we define an initial set here for the init
511
# function and they will be overridden after object defn
0 commit comments