--- a/eric7/Plugins/WizardPlugins/SetupWizard/AddProjectUrlDialog.py Sat Jul 02 18:53:56 2022 +0200 +++ b/eric7/Plugins/WizardPlugins/SetupWizard/AddProjectUrlDialog.py Sun Jul 03 13:52:59 2022 +0200 @@ -63,7 +63,9 @@ Private slot to update the enabled state of the OK button. """ self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled( - bool(self.nameComboBox.currentText()) and bool(self.urlEdit.text()) + bool(self.nameComboBox.currentText()) and + bool(self.urlEdit.text()) and + self.urlEdit.text().startswith(("http://", "https://")) ) def getUrl(self):