PyInstaller/PyInstallerCleanupDialog.py

changeset 35
d9b3cadaf707
parent 34
784d24a61fdf
equal deleted inserted replaced
34:784d24a61fdf 35:d9b3cadaf707
24 Constructor 24 Constructor
25 25
26 @param parent reference to the parent widget 26 @param parent reference to the parent widget
27 @type QWidget 27 @type QWidget
28 """ 28 """
29 super(PyInstallerCleanupDialog, self).__init__(parent) 29 super().__init__(parent)
30 self.setupUi(self) 30 self.setupUi(self)
31 31
32 msh = self.minimumSizeHint() 32 msh = self.minimumSizeHint()
33 self.resize(max(self.width(), msh.width()), msh.height()) 33 self.resize(max(self.width(), msh.width()), msh.height())
34 34

eric ide

mercurial