--- a/Preferences/ConfigurationPages/EditorAutocompletionPage.py Sat May 30 20:16:47 2015 +0200 +++ b/Preferences/ConfigurationPages/EditorAutocompletionPage.py Sun May 31 17:30:12 2015 +0200 @@ -37,6 +37,8 @@ Preferences.getEditor("AutoCompletionReplaceWord")) self.acThresholdSlider.setValue( Preferences.getEditor("AutoCompletionThreshold")) + self.acScintillaCheckBox.setChecked( + Preferences.getEditor("AutoCompletionScintillaOnFail")) def save(self): """ @@ -54,6 +56,9 @@ Preferences.setEditor( "AutoCompletionThreshold", self.acThresholdSlider.value()) + Preferences.setEditor( + "AutoCompletionScintillaOnFail", + self.acScintillaCheckBox.isChecked()) def create(dlg):