diff -r d14ddbfbbd36 -r c6dda2cbe081 Preferences/ConfigurationPages/InterfacePage.py --- a/Preferences/ConfigurationPages/InterfacePage.py Sat Feb 16 10:27:50 2019 +0100 +++ b/Preferences/ConfigurationPages/InterfacePage.py Sat Mar 02 11:15:24 2019 +0100 @@ -102,6 +102,10 @@ # right side self.codeDocumentationViewerCheckBox.setChecked( Preferences.getUI("ShowCodeDocumentationViewer")) + self.pypiCheckBox.setChecked( + Preferences.getUI("ShowPyPIPackageManager")) + self.condaCheckBox.setChecked( + Preferences.getUI("ShowCondaPackageManager")) self.cooperationCheckBox.setChecked( Preferences.getUI("ShowCooperation")) self.ircCheckBox.setChecked( @@ -200,6 +204,12 @@ "ShowCodeDocumentationViewer", self.codeDocumentationViewerCheckBox.isChecked()) Preferences.setUI( + "ShowPyPIPackageManager", + self.pypiCheckBox.isChecked()) + Preferences.setUI( + "ShowCondaPackageManager", + self.condaCheckBox.isChecked()) + Preferences.setUI( "ShowCooperation", self.cooperationCheckBox.isChecked()) Preferences.setUI(