Closed
Description
Bug report
Bug summary
matplotlib.pyplot.ginput
documentation says that show_clicks
keyword argument defaults to False
, but it behaves as if defaulted to True
.
Code for reproduction
import matplotlib.pyplot as plt
arr = [[1, 0], [0, 1]]
plt.imshow(arr, cmap='gray')
plt.ginput(n=-1, timeout=0)
plt.close()
plt.show()
(then left-click on each tile)
Actual outcome
Expected outcome
Matplotlib version
- Operating system: Linux Ubuntu 18.04
- Matplotlib version: 3.10
- Matplotlib backend: Qt5Agg
- Python version: 3.7.3
Installed matplotlib with conda default channel