167 # select page |
167 # select page |
168 if self.condaButton.isChecked(): |
168 if self.condaButton.isChecked(): |
169 self.venvStack.setCurrentWidget(self.condaPage) |
169 self.venvStack.setCurrentWidget(self.condaPage) |
170 else: |
170 else: |
171 self.venvStack.setCurrentWidget(self.venvPage) |
171 self.venvStack.setCurrentWidget(self.venvPage) |
|
172 |
|
173 @pyqtSlot(str) |
|
174 def on_nameEdit_textChanged(self, txt): |
|
175 """ |
|
176 Private slot handling a change of the virtual environment name. |
|
177 |
|
178 @param txt name of the virtual environment |
|
179 @type str |
|
180 """ |
|
181 self.__updateOK() |
172 |
182 |
173 @pyqtSlot(str) |
183 @pyqtSlot(str) |
174 def on_targetDirectoryPicker_textChanged(self, txt): |
184 def on_targetDirectoryPicker_textChanged(self, txt): |
175 """ |
185 """ |
176 Private slot handling a change of the target directory. |
186 Private slot handling a change of the target directory. |