47 # modify some what's this help texts |
47 # modify some what's this help texts |
48 t = self.commandCombo.whatsThis() |
48 t = self.commandCombo.whatsThis() |
49 if t: |
49 if t: |
50 t += Utilities.getPercentReplacementHelp() |
50 t += Utilities.getPercentReplacementHelp() |
51 self.commandCombo.setWhatsThis(t) |
51 self.commandCombo.setWhatsThis(t) |
|
52 |
|
53 msh = self.minimumSizeHint() |
|
54 self.resize(max(self.width(), msh.width()), msh.height()) |
52 |
55 |
53 def on_commandCombo_editTextChanged(self, text): |
56 def on_commandCombo_editTextChanged(self, text): |
54 """ |
57 """ |
55 Private method used to enable/disable the OK-button. |
58 Private method used to enable/disable the OK-button. |
56 |
59 |