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

branch
eric7
changeset 10069
435cc5875135
parent 9653
e67609152c5e
child 10217
7888177e7463
--- a/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnCommandDialog.py	Thu May 25 11:12:05 2023 +0200
+++ b/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnCommandDialog.py	Thu May 25 19:51:47 2023 +0200
@@ -7,6 +7,7 @@
 Module implementing the Subversion command dialog.
 """
 
+from PyQt6.QtCore import pyqtSlot
 from PyQt6.QtWidgets import QDialog, QDialogButtonBox
 
 from eric7 import Utilities
@@ -60,6 +61,7 @@
         msh = self.minimumSizeHint()
         self.resize(max(self.width(), msh.width()), msh.height())
 
+    @pyqtSlot(str)
     def on_commandCombo_editTextChanged(self, text):
         """
         Private method used to enable/disable the OK-button.

eric ide

mercurial