diff -r 866adc8c315b -r 0acf98cd089a eric6/Project/UicCompilerOptionsDialog.py --- a/eric6/Project/UicCompilerOptionsDialog.py Sun Jan 17 13:53:08 2021 +0100 +++ b/eric6/Project/UicCompilerOptionsDialog.py Mon Feb 01 10:38:16 2021 +0100 @@ -34,8 +34,8 @@ self.packageRootEdit.setText(compilerOptions["PackagesRoot"]) self.suffixEdit.setText(compilerOptions["RcSuffix"]) - if 'uic5' not in compiler: - self.packageGroup.setEnabled(False) + self.packageGroup.setEnabled('uic5' in compiler) + self.suffixGroup.setEnabled('uic6' not in compiler) msh = self.minimumSizeHint() self.resize(max(self.width(), msh.width()), msh.height())