(self, ref_artist, offsetbox, use_blit=False)
| 1651 | |
| 1652 | class DraggableOffsetBox(DraggableBase): |
| 1653 | def __init__(self, ref_artist, offsetbox, use_blit=False): |
| 1654 | super().__init__(ref_artist, use_blit=use_blit) |
| 1655 | self.offsetbox = offsetbox |
| 1656 | |
| 1657 | def save_offset(self): |
| 1658 | offsetbox = self.offsetbox |