Skip to content

Commit 9fd2ef9

Browse files
authored
Merge pull request #28732 from clewarne14/rename-qt-size-hint-method
Renames the minumumSizeHint method to minimumSizeHint
2 parents 186f36d + ba11a8c commit 9fd2ef9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/backend_qt.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ def sizeHint(self):
393393
w, h = self.get_width_height()
394394
return QtCore.QSize(w, h)
395395

396-
def minumumSizeHint(self):
396+
def minimumSizeHint(self):
397397
return QtCore.QSize(10, 10)
398398

399399
@staticmethod

0 commit comments

Comments
 (0)