Skip to content

Commit 459df65

Browse files
committed
Remove do-nothing press and release overrides
1 parent e5eab11 commit 459df65

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

matplotlib_backend_qtquick/backend_qtquick.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -483,14 +483,6 @@ def draw_with_locators_update(self):
483483
loc.refresh()
484484
self.canvas.draw_idle()
485485

486-
def press(self, event):
487-
"""Called whenever a mouse button is pressed."""
488-
pass
489-
490-
def release(self, event):
491-
"""this will be called whenever mouse button is released"""
492-
pass
493-
494486
def draw_rubberband(self, event, x0, y0, x1, y1):
495487
"""Draw a rectangle rubberband to indicate zoom limits"""
496488
height = self.canvas.figure.bbox.height

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="matplotlib_backend_qtquick",
8-
version="0.0.7",
8+
version="0.0.8",
99
author="Jovan Mitrevski",
1010
author_email="[email protected]",
1111
description="A QtQuick backend for matplotlib",

0 commit comments

Comments
 (0)