--- a/eric6/Project/UicCompilerOptionsDialog.py Tue Jul 02 19:33:49 2019 +0200 +++ b/eric6/Project/UicCompilerOptionsDialog.py Sun Jul 07 11:25:08 2019 +0200 @@ -34,6 +34,7 @@ self.setupUi(self) self.packageEdit.setText(compilerOptions["Package"]) + self.packageRootEdit.setText(compilerOptions["PackagesRoot"]) self.suffixEdit.setText(compilerOptions["RcSuffix"]) if 'uic5' not in compiler or PYQT_VERSION < 0x050600: @@ -47,10 +48,12 @@ """ Public method to get the entered data. - @return tuple containing the package and the rc-file suffix - @rtype tuple of (str, str) + @return tuple containing the package, the rc-file suffix and the + project relative root of the packages directory + @rtype tuple of (str, str, str) """ return ( self.packageEdit.text().strip(), self.suffixEdit.text().strip(), + self.packageRootEdit.text().strip(), )