Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ba11a8c

Browse files
committed
Renamed the minumumSizeHint method to minimumSizeHint according to #28716
1 parent 186f36d commit ba11a8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/backend_qt.py

Lines changed: 1 addition & 1 deletion
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)