39 |
39 |
40 self.iconLabel.setText("") |
40 self.iconLabel.setText("") |
41 self.iconLabel.setPixmap( |
41 self.iconLabel.setPixmap( |
42 self.style().standardIcon(QStyle.SP_MessageBoxQuestion).pixmap( |
42 self.style().standardIcon(QStyle.SP_MessageBoxQuestion).pixmap( |
43 32, 32)) |
43 32, 32)) |
|
44 |
|
45 msh = self.minimumSizeHint() |
|
46 self.resize(max(self.width(), msh.width()), msh.height()) |
44 |
47 |
45 def setData(self, username, password): |
48 def setData(self, username, password): |
46 """ |
49 """ |
47 Public method to set the login data. |
50 Public method to set the login data. |
48 |
51 |