def handleInputHelpers(self):
        # Bug in enigma: Handling of HelpWindow shouldn't be called if the configElement isn't real "ConfigText"
        callBase = False
        if self["config"].getCurrent() is not None:
            if self.__isRealConfigText(self["config"].getCurrent()[1]):
                callBase = True
        else:
            callBase = True

        if callBase:
            ConfigListScreen.handleInputHelpers(self)