Copy properties from the `.LineCollection` *orig_handle* to the `.Line2D` *legend_handle*.
(self, legend_handle, orig_handle)
| 708 | return artists |
| 709 | |
| 710 | def _copy_collection_props(self, legend_handle, orig_handle): |
| 711 | """ |
| 712 | Copy properties from the `.LineCollection` *orig_handle* to the |
| 713 | `.Line2D` *legend_handle*. |
| 714 | """ |
| 715 | legend_handle.set_color(orig_handle.get_color()[0]) |
| 716 | legend_handle.set_linestyle(orig_handle.get_linestyle()[0]) |
| 717 | |
| 718 | |
| 719 | class HandlerTuple(HandlerBase): |
nothing calls this directly
no test coverage detected