diff -r 17c01303a239 -r 67064c71df21 Preferences/ConfigurationPages/TemplatesPage.py --- a/Preferences/ConfigurationPages/TemplatesPage.py Tue Oct 15 19:13:32 2013 +0200 +++ b/Preferences/ConfigurationPages/TemplatesPage.py Wed Oct 16 15:16:54 2013 +0200 @@ -41,14 +41,17 @@ """ Public slot to save the Templates configuration. """ - Preferences.setTemplates("AutoOpenGroups", + Preferences.setTemplates( + "AutoOpenGroups", self.templatesAutoOpenGroupsCheckBox.isChecked()) sepChar = self.templatesSeparatorCharEdit.text() if sepChar: Preferences.setTemplates("SeparatorChar", sepChar) - Preferences.setTemplates("SingleDialog", + Preferences.setTemplates( + "SingleDialog", self.templatesSingleDialogButton.isChecked()) - Preferences.setTemplates("ShowTooltip", + Preferences.setTemplates( + "ShowTooltip", self.templatesToolTipCheckBox.isChecked())