Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lib/matplotlib/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -1042,6 +1042,8 @@ def get_window_extent(self, renderer=None, dpi=None):
return bbox

def get_tightbbox(self, renderer=None):
if not self.get_visible() or self.get_text() == "":
return Bbox.null()
# Exclude text at data coordinates outside the valid domain of the axes
# scales (e.g., negative coordinates with a log scale).
if (self.axes
Expand Down
Loading