Skip to content

Commit

Permalink
Merge pull request matplotlib#29200 from meeseeksmachine/auto-backpor…
Browse files Browse the repository at this point in the history
…t-of-pr-29182-on-v3.10.x

Backport PR matplotlib#29182 on branch v3.10.x (Update backend_qt.py: parent not passed to __init__ on subplottool)
  • Loading branch information
rcomer authored Nov 30, 2024
2 parents b98c848 + 8e73c6d commit 53a9605
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/backends/backend_qt.py
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,7 @@ def set_history_buttons(self):

class SubplotToolQt(QtWidgets.QDialog):
def __init__(self, targetfig, parent):
super().__init__()
super().__init__(parent)
self.setWindowIcon(QtGui.QIcon(
str(cbook._get_data_path("images/matplotlib.png"))))
self.setObjectName("SubplotTool")
Expand Down

0 comments on commit 53a9605

Please sign in to comment.