(self, event)
| 878 | self._cancel_action() |
| 879 | |
| 880 | def _mouse_move(self, event): |
| 881 | for a, _ind in self._xypress: |
| 882 | # safer to use the recorded button at the _press than current |
| 883 | # button: # multiple button can get pressed during motion... |
| 884 | a.drag_pan(self._button_pressed, event.key, event.x, event.y) |
| 885 | self.toolmanager.canvas.draw_idle() |
| 886 | |
| 887 | |
| 888 | class ToolHelpBase(ToolBase): |