diff --git a/lib/matplotlib/legend.py b/lib/matplotlib/legend.py index 07fa8313c086..f199851f21d7 100644 --- a/lib/matplotlib/legend.py +++ b/lib/matplotlib/legend.py @@ -754,13 +754,8 @@ def get_children(self): children = [] if self._legend_box: children.append(self._legend_box) - children.extend(self.get_lines()) - children.extend(self.get_patches()) - children.extend(self.get_texts()) children.append(self.get_frame()) - if self._legend_title_box: - children.append(self.get_title()) return children def get_frame(self):