--- a/PluginAssistantEric.py Sun Feb 05 16:31:50 2012 +0100 +++ b/PluginAssistantEric.py Sat May 19 18:32:26 2012 +0200 @@ -23,7 +23,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "2.2.1" +version = "2.3.0" className = "AssistantEricPlugin" packageName = "AssistantEric" shortDescription = "Alternative autocompletion and calltips provider." @@ -109,8 +109,10 @@ self.__defaults = { "AutoCompletionEnabled": False, "AutoCompletionSource": AcsAPIs | AcsProject, + "AutoCompletionFollowHierarchy": False, "CalltipsEnabled": False, "CallTipsContextShown": True, + "CallTipsFollowHierarchy": False, } self.__translator = None @@ -219,7 +221,9 @@ @param prefClass preferences class used as the storage area @return the requested refactoring setting """ - if key in ["AutoCompletionEnabled", "CalltipsEnabled", "CallTipsContextShown"]: + if key in ["AutoCompletionEnabled", "AutoCompletionFollowHierarchy", + "CalltipsEnabled", "CallTipsContextShown", + "CallTipsFollowHierarchy"]: return Preferences.toBool(Preferences.Prefs.settings.value( "AssistantEric/" + key, self.__defaults[key])) else: