diff -r 17c01303a239 -r 67064c71df21 Preferences/ConfigurationPages/CooperationPage.py --- a/Preferences/ConfigurationPages/CooperationPage.py Tue Oct 15 19:13:32 2013 +0200 +++ b/Preferences/ConfigurationPages/CooperationPage.py Wed Oct 16 15:16:54 2013 +0200 @@ -54,15 +54,20 @@ """ Public slot to save the Cooperation configuration. """ - Preferences.setCooperation("AutoStartServer", + Preferences.setCooperation( + "AutoStartServer", self.autostartCheckBox.isChecked()) - Preferences.setCooperation("TryOtherPorts", + Preferences.setCooperation( + "TryOtherPorts", self.otherPortsCheckBox.isChecked()) - Preferences.setCooperation("AutoAcceptConnections", + Preferences.setCooperation( + "AutoAcceptConnections", self.autoAcceptCheckBox.isChecked()) - Preferences.setCooperation("ServerPort", + Preferences.setCooperation( + "ServerPort", self.serverPortSpin.value()) - Preferences.setCooperation("MaxPortsToTry", + Preferences.setCooperation( + "MaxPortsToTry", self.portToTrySpin.value()) bannedUsers = []