@@ -727,8 +727,9 @@ def _do_extends(self, ax=None):
727
727
val = - 1 if self ._long_axis ().get_inverted () else 0
728
728
color = self .cmap (self .norm (self ._values [val ]))
729
729
patch = mpatches .PathPatch (
730
- mpath .Path (xy ), facecolor = color , linewidth = 0 ,
731
- antialiased = False , transform = self .ax .transAxes ,
730
+ mpath .Path (xy ), facecolor = color , alpha = self .alpha ,
731
+ linewidth = 0 , antialiased = False ,
732
+ transform = self .ax .transAxes ,
732
733
hatch = hatches [0 ], clip_on = False ,
733
734
# Place it right behind the standard patches, which is
734
735
# needed if we updated the extends
@@ -748,7 +749,7 @@ def _do_extends(self, ax=None):
748
749
val = 0 if self ._long_axis ().get_inverted () else - 1
749
750
color = self .cmap (self .norm (self ._values [val ]))
750
751
patch = mpatches .PathPatch (
751
- mpath .Path (xy ), facecolor = color ,
752
+ mpath .Path (xy ), facecolor = color , alpha = self . alpha ,
752
753
linewidth = 0 , antialiased = False ,
753
754
transform = self .ax .transAxes , hatch = hatches [- 1 ], clip_on = False ,
754
755
# Place it right behind the standard patches, which is
0 commit comments