Release the mouse grab held by the `~.axes.Axes` *ax*. Usually called by the widgets. It is ok to call this even if *ax* doesn't have the mouse grab currently.
(self, ax)
| 1934 | self.mouse_grabber = ax |
| 1935 | |
| 1936 | def release_mouse(self, ax): |
| 1937 | """ |
| 1938 | Release the mouse grab held by the `~.axes.Axes` *ax*. |
| 1939 | |
| 1940 | Usually called by the widgets. It is ok to call this even if *ax* |
| 1941 | doesn't have the mouse grab currently. |
| 1942 | """ |
| 1943 | if self.mouse_grabber is ax: |
| 1944 | self.mouse_grabber = None |
| 1945 | |
| 1946 | def set_cursor(self, cursor): |
| 1947 | """ |
no outgoing calls
no test coverage detected