diff -r bf5ae5d7477d -r befeff46ec0f Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.py --- a/Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.py Sat Oct 12 17:31:40 2013 +0200 +++ b/Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.py Sat Oct 12 18:25:29 2013 +0200 @@ -42,14 +42,14 @@ Public slot to save the EditorCalltips configuration. """ if self.ctNoContextButton.isChecked(): - Preferences.setEditor("CallTipsStyle", - QsciScintilla.CallTipsNoContext) + Preferences.setEditor( + "CallTipsStyle", QsciScintilla.CallTipsNoContext) elif self.ctNoAutoCompletionButton.isChecked(): - Preferences.setEditor("CallTipsStyle", - QsciScintilla.CallTipsNoAutoCompletionContext) + Preferences.setEditor( + "CallTipsStyle", QsciScintilla.CallTipsNoAutoCompletionContext) elif self.ctContextButton.isChecked(): - Preferences.setEditor("CallTipsStyle", - QsciScintilla.CallTipsContext) + Preferences.setEditor( + "CallTipsStyle", QsciScintilla.CallTipsContext) def create(dlg):