X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/03840de4f14dbbbbb6d4d38c862a0a1cceba5ea7..60c6b67a63dbda5dbe36b1bf8bc0f45a7692d91b:/lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py diff --git a/lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py b/lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py index faa9b057..6cf7c8fe 100644 --- a/lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py +++ b/lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py @@ -61,12 +61,12 @@ def SecSetupStart(menuid): # only show if DVB-S frontends are available for slot in nimmgr.nim_slots: if slot.isCompatible("DVB-S"): - return [(_("Satellite Equipment Setup"), SecSetupMain)] + return [(_("Satellite Equipment Setup"), SecSetupMain, "satellite_equipment_setup", None)] return [ ] def Plugins(**kwargs): if (nimmgr.hasNimType("DVB-S")): - return PluginDescriptor(name=_("Satellite Equipment Setup"), description="Setup your satellite equipment", where = PluginDescriptor.WHERE_SETUP, fnc=SecSetupStart) + return PluginDescriptor(name=_("Satellite Equipment Setup"), description="Setup your satellite equipment", where = PluginDescriptor.WHERE_MENU, fnc=SecSetupStart) else: return []