File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1351,20 +1351,20 @@ def _in_handles(h, l):
1351
1351
if type (f_h ) != type (h ):
1352
1352
continue
1353
1353
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 ( ):
1356
1356
continue
1357
1357
except AttributeError :
1358
1358
pass
1359
1359
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 ( ):
1362
1362
continue
1363
1363
except AttributeError :
1364
1364
pass
1365
1365
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 ( ):
1368
1368
continue
1369
1369
except AttributeError :
1370
1370
pass
You can’t perform that action at this time.
0 commit comments