Skip to content

Commit

Permalink
Fix deprecations of *Cursor widget event handlers
Browse files Browse the repository at this point in the history
These were added in matplotlib#19763.
  • Loading branch information
QuLogic committed Dec 17, 2022
1 parent 4945f05 commit d2a3266
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/matplotlib/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -1616,7 +1616,7 @@ def __init__(self, ax, horizOn=True, vertOn=True, useblit=False,
self.background = None
self.needclear = False

@_api.deprecated('3.5')
@_api.deprecated('3.7')
def clear(self, event):
"""Internal event handler to clear the cursor."""
self._clear(event)
Expand All @@ -1632,7 +1632,7 @@ def _clear(self, event):
if self.useblit:
self.background = self.canvas.copy_from_bbox(self.ax.bbox)

onmove = _api.deprecate_privatize_attribute('3.5')
onmove = _api.deprecate_privatize_attribute('3.7')

def _onmove(self, event):
"""Internal event handler to draw the cursor when the mouse moves."""
Expand Down Expand Up @@ -1769,7 +1769,7 @@ def disconnect(self):
canvas.mpl_disconnect(cid)
info["cids"].clear()

@_api.deprecated('3.5')
@_api.deprecated('3.7')
def clear(self, event):
"""Clear the cursor."""
if self.ignore(event):
Expand All @@ -1786,7 +1786,7 @@ def _clear(self, event):
for canvas, info in self._canvas_infos.items():
info["background"] = canvas.copy_from_bbox(canvas.figure.bbox)

onmove = _api.deprecate_privatize_attribute('3.5')
onmove = _api.deprecate_privatize_attribute('3.7')

def _onmove(self, event):
if (self.ignore(event)
Expand Down

0 comments on commit d2a3266

Please sign in to comment.