File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Original file line number Diff line number Diff line change @@ -755,7 +755,7 @@ def draw(self, renderer):
755
755
gc .set_linewidth (self ._markeredgewidth )
756
756
mec = self ._markeredgecolor
757
757
if (is_string_like (mec ) and mec == 'auto' and
758
- rgbaFace is not None ):
758
+ rgbaFace is not None ):
759
759
gc .set_alpha (rgbaFace [3 ])
760
760
else :
761
761
gc .set_alpha (self .get_alpha ())
@@ -794,6 +794,11 @@ def draw(self, renderer):
794
794
if alt_marker_path :
795
795
alt_marker_trans = marker .get_alt_transform ()
796
796
alt_marker_trans = alt_marker_trans .scale (w )
797
+ if (is_string_like (mec ) and mec == 'auto' and
798
+ rgbaFaceAlt is not None ):
799
+ gc .set_alpha (rgbaFaceAlt [3 ])
800
+ else :
801
+ gc .set_alpha (self .get_alpha ())
797
802
798
803
renderer .draw_markers (
799
804
gc , alt_marker_path , alt_marker_trans , subsampled ,
You can’t perform that action at this time.
0 commit comments