We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54ca152 commit 91f74c4Copy full SHA for 91f74c4
mpl_point_clicker/_clicker.py
@@ -117,14 +117,9 @@ def _update_legend_alpha(self):
117
def _clicked(self, event):
118
if not self._fig.canvas.widgetlock.available(self):
119
return
120
- print('in clicked')
121
if event.inaxes is self.ax:
122
- print('in inaxes')
123
- print(event.button)
124
if event.button is MouseButton.LEFT:
125
- print('in here!')
126
self._positions[self._current_class].append((event.xdata, event.ydata))
127
- print(self._positions[self._current_class])
128
self._update_points(self._current_class)
129
elif event.button is MouseButton.RIGHT:
130
pos = self._positions[self._current_class]
0 commit comments