def closed(ret=False):
closedScreen = dlg_stack.pop()
+ global bouquetSel
if bouquetSel and closedScreen == bouquetSel:
- global bouquetSel
bouquetSel = None
dlgs=len(dlg_stack)
if ret and dlgs > 0: # recursive close wished
def Plugins(**kwargs):
name = _("Graphical Multi EPG")
descr = _("A graphical EPG for all services of an specific bouquet")
- return [ PluginDescriptor(name=name, description=descr, where = PluginDescriptor.WHERE_EXTENSIONSMENU, fnc=main) ]
+ return [ PluginDescriptor(name=name, description=descr, where = PluginDescriptor.WHERE_EVENTINFO, fnc=main),
+ PluginDescriptor(name=name, description=descr, where = PluginDescriptor.WHERE_EXTENSIONSMENU, fnc=main) ]