(self, dx, dy)
| 1741 | self.offsetbox.set_offset(offset) |
| 1742 | |
| 1743 | def update_offset(self, dx, dy): |
| 1744 | loc_in_canvas = self.offsetbox_x + dx, self.offsetbox_y + dy |
| 1745 | self.offsetbox.set_offset(loc_in_canvas) |
| 1746 | |
| 1747 | def get_loc_in_canvas(self): |
| 1748 |
nothing calls this directly
no test coverage detected