File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1351,20 +1351,20 @@ def _in_handles(h, l):
13511351 if type (f_h ) != type (h ):
13521352 continue
13531353 try :
1354- if (colors .to_rgba (f_h .get_color ()) !=
1355- colors .to_rgba (h .get_color ())):
1354+ if (colors .to_rgba_array (f_h .get_color ()) !=
1355+ colors .to_rgba_array (h .get_color ())). any ( ):
13561356 continue
13571357 except AttributeError :
13581358 pass
13591359 try :
1360- if (colors .to_rgba (f_h .get_facecolor ()) !=
1361- colors .to_rgba (h .get_facecolor ())):
1360+ if (colors .to_rgba_array (f_h .get_facecolor ()) !=
1361+ colors .to_rgba_array (h .get_facecolor ())). any ( ):
13621362 continue
13631363 except AttributeError :
13641364 pass
13651365 try :
1366- if (colors .to_rgba (f_h .get_edgecolor ()) !=
1367- colors .to_rgba (h .get_edgecolor ())):
1366+ if (colors .to_rgba_array (f_h .get_edgecolor ()) !=
1367+ colors .to_rgba_array (h .get_edgecolor ())). any ( ):
13681368 continue
13691369 except AttributeError :
13701370 pass
You can’t perform that action at this time.
0 commit comments