@@ -707,8 +707,9 @@ def _do_extends(self, ax=None):
707
707
val = - 1 if self ._long_axis ().get_inverted () else 0
708
708
color = self .cmap (self .norm (self ._values [val ]))
709
709
patch = mpatches .PathPatch (
710
- mpath .Path (xy ), facecolor = color , linewidth = 0 ,
711
- antialiased = False , transform = self .ax .transAxes ,
710
+ mpath .Path (xy ), facecolor = color , alpha = self .alpha ,
711
+ linewidth = 0 , antialiased = False ,
712
+ transform = self .ax .transAxes ,
712
713
hatch = hatches [0 ], clip_on = False ,
713
714
# Place it right behind the standard patches, which is
714
715
# needed if we updated the extends
@@ -728,7 +729,7 @@ def _do_extends(self, ax=None):
728
729
val = 0 if self ._long_axis ().get_inverted () else - 1
729
730
color = self .cmap (self .norm (self ._values [val ]))
730
731
patch = mpatches .PathPatch (
731
- mpath .Path (xy ), facecolor = color ,
732
+ mpath .Path (xy ), facecolor = color , alpha = self . alpha ,
732
733
linewidth = 0 , antialiased = False ,
733
734
transform = self .ax .transAxes , hatch = hatches [- 1 ], clip_on = False ,
734
735
# Place it right behind the standard patches, which is
0 commit comments