()
| 445 | |
| 446 | |
| 447 | def test_remove_draggable(): |
| 448 | fig, ax = plt.subplots() |
| 449 | an = ax.annotate("foo", (.5, .5)) |
| 450 | an.draggable(True) |
| 451 | an.remove() |
| 452 | MouseEvent("button_release_event", fig.canvas, 1, 1)._process() |
| 453 | |
| 454 | |
| 455 | def test_draggable_in_subfigure(): |