56 @pyqtSlot(str) |
56 @pyqtSlot(str) |
57 def on_fixturesEdit_textChanged(self, txt): |
57 def on_fixturesEdit_textChanged(self, txt): |
58 """ |
58 """ |
59 Private slot to handle a change of the fixtures text. |
59 Private slot to handle a change of the fixtures text. |
60 |
60 |
61 @param txt text of the line edit (string) |
61 @param txt text of the line edit |
|
62 @type str |
62 """ |
63 """ |
63 self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(bool(txt)) |
64 self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(bool(txt)) |
64 |
65 |
65 @pyqtSlot() |
66 @pyqtSlot() |
66 def on_fixtureFileButton_clicked(self): |
67 def on_fixtureFileButton_clicked(self): |