Classic remote

  • I am trying to make the remote to work in classic mode (Neutrino) but I cant get the OK to only show the servicelist. If I use the method of just reassign the keys in keymap.xml file everytime I press OK it also moves the cursor.


    Found the code where it all happens but I cant get it to work as I wants and any help would be nice.


    I added an idea of what I want to do but the getcurrent does of course not work since it is not defined.



    self["ChannelSelectActions"] = HelpableActionMap(self, "InfobarChannelSelection",
    {
    "switchChannelUp": self.switchChannelUp,
    "switchChannelDown": self.switchChannelDown,
    "switchChannelList": self.switchChannelList,
    "zapUp": (self.zapUp, _("previous channel")),
    "zapDown": (self.zapDown, _("next channel")),
    "historyBack": (self.historyBack, _("previous channel in history")),
    "historyNext": (self.historyNext, _("next channel in history"))
    })




    def switchChannelList(self):
    self.servicelist.getCurrent()
    self.session.execDialog(self.servicelist)



    /WeeGull