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