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