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 4ed5a8c commit 1a56221Copy full SHA for 1a56221
lib/matplotlib/table.py
@@ -279,7 +279,9 @@ def get_children(self):
279
280
def get_window_extent(self, renderer):
281
'Return the bounding box of the table in window coords'
282
- boxes = [c.get_window_extent(renderer) for c in self._cells]
+ boxes = [cell.get_window_extent(renderer)
283
+ for cell in self._cells.values()]
284
+
285
return Bbox.union(boxes)
286
287
def _do_cell_alignment(self):
0 commit comments