Skip to content

Commit 391c0cb

Browse files
authored
Merge pull request #11348 from anntzer/osxblit
Make OSX's blit() have a consistent signature with other backends.
2 parents 2842a95 + 6d9a65a commit 391c0cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/backend_macosx.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def draw(self):
8888
def draw_idle(self, *args, **kwargs):
8989
self.invalidate()
9090

91-
def blit(self, bbox):
91+
def blit(self, bbox=None):
9292
self.invalidate()
9393

9494
def resize(self, width, height):

0 commit comments

Comments
 (0)