@@ -4063,7 +4063,7 @@ def __init__(self, posA=None, posB=None,
4063
4063
def set_dpi_cor (self , dpi_cor ):
4064
4064
"""
4065
4065
dpi_cor is currently used for linewidth-related things and
4066
- shrink factor. Mutation scale is not affected by this.
4066
+ shrink factor. Mutation scale is affected by this.
4067
4067
"""
4068
4068
4069
4069
self ._dpi_cor = dpi_cor
@@ -4072,7 +4072,7 @@ def set_dpi_cor(self, dpi_cor):
4072
4072
def get_dpi_cor (self ):
4073
4073
"""
4074
4074
dpi_cor is currently used for linewidth-related things and
4075
- shrink factor. Mutation scale is not affected by this.
4075
+ shrink factor. Mutation scale is affected by this.
4076
4076
"""
4077
4077
4078
4078
return self ._dpi_cor
@@ -4224,15 +4224,16 @@ def get_path_in_displaycoord(self):
4224
4224
patchB = self .patchB ,
4225
4225
shrinkA = self .shrinkA * dpi_cor ,
4226
4226
shrinkB = self .shrinkB * dpi_cor
4227
- )
4227
+ )
4228
4228
else :
4229
4229
_path = self .get_transform ().transform_path (self ._path_original )
4230
4230
4231
- _path , fillable = self .get_arrowstyle ()(_path ,
4232
- self .get_mutation_scale (),
4233
- self .get_linewidth () * dpi_cor ,
4234
- self .get_mutation_aspect ()
4235
- )
4231
+ _path , fillable = self .get_arrowstyle ()(
4232
+ _path ,
4233
+ self .get_mutation_scale () * dpi_cor ,
4234
+ self .get_linewidth () * dpi_cor ,
4235
+ self .get_mutation_aspect ()
4236
+ )
4236
4237
4237
4238
#if not fillable:
4238
4239
# self._fill = False
@@ -4542,13 +4543,14 @@ def get_path_in_displaycoord(self):
4542
4543
patchB = self .patchB ,
4543
4544
shrinkA = self .shrinkA * dpi_cor ,
4544
4545
shrinkB = self .shrinkB * dpi_cor
4545
- )
4546
-
4547
- _path , fillable = self .get_arrowstyle ()(_path ,
4548
- self .get_mutation_scale (),
4549
- self .get_linewidth () * dpi_cor ,
4550
- self .get_mutation_aspect ()
4551
- )
4546
+ )
4547
+
4548
+ _path , fillable = self .get_arrowstyle ()(
4549
+ _path ,
4550
+ self .get_mutation_scale () * dpi_cor ,
4551
+ self .get_linewidth () * dpi_cor ,
4552
+ self .get_mutation_aspect ()
4553
+ )
4552
4554
4553
4555
return _path , fillable
4554
4556
0 commit comments