--- a/Preferences/ConfigurationPages/EditorAutocompletionPage.py Mon Oct 16 19:11:25 2017 +0200 +++ b/Preferences/ConfigurationPages/EditorAutocompletionPage.py Mon Oct 16 19:39:57 2017 +0200 @@ -43,6 +43,8 @@ Preferences.getEditor("AutoCompletionTimeout")) self.acCacheSizeSpinBox.setValue( Preferences.getEditor("AutoCompletionCacheSize")) + self.acCacheTimeSpinBox.setValue( + Preferences.getEditor("AutoCompletionCacheTime")) def save(self): """ @@ -70,6 +72,9 @@ Preferences.setEditor( "AutoCompletionCacheSize", self.acCacheSizeSpinBox.value()) + Preferences.setEditor( + "AutoCompletionCacheTime", + self.acCacheTimeSpinBox.value()) def create(dlg):