Thanks to visit codestin.com Credit goes to github.com
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 512e4d8 commit 4c5dfaaCopy full SHA for 4c5dfaa
1 file changed
lib/matplotlib/backends/tkagg.py
@@ -14,7 +14,8 @@ def blit(photoimage, aggimage, bbox=None, colormode=1):
14
if bbox is not None:
15
bbox_array = bbox.__array__()
16
# x1, x2, y1, y2
17
- bboxptr = (bbox_array[0, 0], bbox_array[1, 0], bbox_array[0, 1], bbox_array[1, 1])
+ bboxptr = (bbox_array[0, 0], bbox_array[1, 0],
18
+ bbox_array[0, 1], bbox_array[1, 1])
19
else:
20
bboxptr = 0
21
data = np.asarray(aggimage)
0 commit comments