8000 mistake in applying a change fixed · matplotlib/matplotlib@65a9a9b · GitHub
[go: up one dir, main page]

Skip to content

Commit 65a9a9b

Browse files
authored
mistake in applying a change fixed
1 parent e399261 commit 65a9a9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/widgets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1327,7 +1327,7 @@ def _click(self, event):
13271327
event.canvas.grab_mouse(self.ax)
13281328
if not self.capturekeystrokes:
13291329
self.begin_typing(event.x)
1330-
self.cursor_index = self._text_disp.char_index_at(event.x)
1330+
self.cursor_index = self.text_disp._char_index_at(event.x)
13311331
self._rendercursor()
13321332

13331333
def _resize(self, event):

0 commit comments

Comments
 (0)
0