diff -r d3bedd175c99 -r 0ae07748dbe8 eric7/Project/PropertiesDialog.py --- a/eric7/Project/PropertiesDialog.py Sat Jul 10 11:41:13 2021 +0200 +++ b/eric7/Project/PropertiesDialog.py Sat Jul 10 12:31:31 2021 +0200 @@ -97,7 +97,7 @@ curIndex = self.projectTypeComboBox.findData( self.project.pdata["PROJECTTYPE"]) if curIndex == -1: - curIndex = self.projectTypeComboBox.findData("PyQt5") + curIndex = self.projectTypeComboBox.findData("PyQt6") self.projectTypeComboBox.setCurrentIndex(curIndex) self.dirPicker.setText(self.project.ppath) self.versionEdit.setText(self.project.pdata["VERSION"]) @@ -137,7 +137,7 @@ self.languageComboBox.setCurrentIndex( self.languageComboBox.findText("Python3")) self.projectTypeComboBox.setCurrentIndex( - self.projectTypeComboBox.findData("PyQt5")) + self.projectTypeComboBox.findData("PyQt6")) self.dirPicker.setText(self.__initPaths[0]) self.versionEdit.setText('0.1') self.vcsLabel.hide()