src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnCommandDialog.py

branch
eric7
changeset 10069
435cc5875135
parent 9653
e67609152c5e
child 10217
7888177e7463
equal deleted inserted replaced
10068:7febcdccb2a1 10069:435cc5875135
5 5
6 """ 6 """
7 Module implementing the Subversion command dialog. 7 Module implementing the Subversion command dialog.
8 """ 8 """
9 9
10 from PyQt6.QtCore import pyqtSlot
10 from PyQt6.QtWidgets import QDialog, QDialogButtonBox 11 from PyQt6.QtWidgets import QDialog, QDialogButtonBox
11 12
12 from eric7 import Utilities 13 from eric7 import Utilities
13 from eric7.EricWidgets.EricPathPicker import EricPathPickerModes 14 from eric7.EricWidgets.EricPathPicker import EricPathPickerModes
14 15
58 self.commandCombo.setWhatsThis(t) 59 self.commandCombo.setWhatsThis(t)
59 60
60 msh = self.minimumSizeHint() 61 msh = self.minimumSizeHint()
61 self.resize(max(self.width(), msh.width()), msh.height()) 62 self.resize(max(self.width(), msh.width()), msh.height())
62 63
64 @pyqtSlot(str)
63 def on_commandCombo_editTextChanged(self, text): 65 def on_commandCombo_editTextChanged(self, text):
64 """ 66 """
65 Private method used to enable/disable the OK-button. 67 Private method used to enable/disable the OK-button.
66 68
67 @param text ignored 69 @param text ignored

eric ide

mercurial