124 if not self.project.vcsSoftwareAvailable(): |
124 if not self.project.vcsSoftwareAvailable(): |
125 self.vcsCheckBox.hide() |
125 self.vcsCheckBox.hide() |
126 |
126 |
127 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled( |
127 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled( |
128 bool(self.dirPicker.text()) and |
128 bool(self.dirPicker.text()) and |
129 self.dirPicker.text() not in |
129 self.dirPicker.text() not in self.__initPaths) |
130 self.__initPaths) |
|
131 |
130 |
132 @pyqtSlot(str) |
131 @pyqtSlot(str) |
133 def on_languageComboBox_currentIndexChanged(self, language): |
132 def on_languageComboBox_currentIndexChanged(self, language): |
134 """ |
133 """ |
135 Private slot handling the selection of a programming language. |
134 Private slot handling the selection of a programming language. |