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 d653ab0 commit d819247Copy full SHA for d819247
lib/matplotlib/figure.py
@@ -2257,7 +2257,7 @@ def subplots_adjust(self, left=None, bottom=None, right=None, top=None,
2257
ax.set_position(ax.figbox)
2258
self.stale = True
2259
2260
- def ginput(self, n=1, timeout=30, show_clicks=False, mouse_add=1,
+ def ginput(self, n=1, timeout=30, show_clicks=True, mouse_add=1,
2261
mouse_pop=3, mouse_stop=2):
2262
"""
2263
Blocking call to interact with a figure.
@@ -2288,7 +2288,7 @@ def ginput(self, n=1, timeout=30, show_clicks=False, mouse_add=1,
2288
timeout : scalar, optional, default: 30
2289
Number of seconds to wait before timing out. If zero or negative
2290
will never timeout.
2291
- show_clicks : bool, optional, default: False
+ show_clicks : bool, optional, default: True
2292
If True, show a red cross at the location of each click.
2293
mouse_add : {1, 2, 3, None}, optional, default: 1 (left click)
2294
Mouse button used to add points.
0 commit comments