@@ -267,7 +267,7 @@ def contains(self, mouseevent):
267
267
# the math involved in checking for containment (here and inside of segment_hits) assumes
268
268
# that it is OK to overflow. In case the application has set the error flags such that
269
269
# an exception is raised on overflow, we temporarily set the appropriate error flags here
270
- # and set them back when we are finished.
270
+ # and set them back when we are finished.
271
271
olderrflags = np .seterr (all = 'ignore' )
272
272
try :
273
273
# Check for collision
@@ -448,7 +448,7 @@ def recache(self, always=False):
448
448
def _transform_path (self , subslice = None ):
449
449
"""
450
450
Puts a TransformedPath instance at self._transformed_path,
451
- all invalidation of the transform is then handled by the
451
+ all invalidation of the transform is then handled by the
452
452
TransformedPath instance.
453
453
"""
454
454
# Masked arrays are now handled by the Path class itself
@@ -540,7 +540,7 @@ def draw(self, renderer):
540
540
else :
541
541
gc .set_foreground (edgecolor )
542
542
gc .set_linewidth (self ._markeredgewidth )
543
- gc . set_alpha ( self . _alpha )
543
+
544
544
marker = self ._marker
545
545
tpath , affine = transformed_path .get_transformed_points_and_affine ()
546
546
if len (tpath .vertices ):
@@ -970,7 +970,7 @@ def _get_rgba_face(self, alt=False):
970
970
if is_string_like (facecolor ) and facecolor .lower () == 'none' :
971
971
rgbaFace = None
972
972
else :
973
- rgbaFace = colorConverter .to_rgba (facecolor )
973
+ rgbaFace = colorConverter .to_rgba (facecolor , self . _alpha )
974
974
return rgbaFace
975
975
976
976
# some aliases....
0 commit comments