Recently, there was a discussion on the OPli plugin's forum regarding the default hotkeys for zap history, which are currently set to < >. However, on Zgemma devices, the back button isn't assigned to any function by default. It would be helpful if an option could be added to assign the back button to this feature.
A user on the forum provided an improved code suggestion:
HistoryZapSelectorKeys = [
["none", _("standard < >"), ["KEY_RESERVED", "KEYRESERVED"]],
["LeftRight", ("only LEFT/RIGHT"), ["KEY_LEFT", "KEYRIGHT"]],
["TextHelp", ("only TEXT/HELP"), ["KEY_TEXT", "KEY_HELP"]],
Recently, there was a discussion on the OPli plugin's forum regarding the default hotkeys for zap history, which are currently set to < >. However, on Zgemma devices, the back button isn't assigned to any function by default. It would be helpful if an option could be added to assign the back button to this feature. A user on the forum provided an improved code suggestion: HistoryZapSelectorKeys = [ ["none", _("standard < >"), ["KEY_RESERVED", "KEYRESERVED"]], ["LeftRight", ("only LEFT/RIGHT"), ["KEY_LEFT", "KEYRIGHT"]], ["TextHelp", ("only TEXT/HELP"), ["KEY_TEXT", "KEY_HELP"]],
["Bouquet", _("only CH+/-,B+/-,P+/-"), ["KEY_CHANNELUP", "KEY_CHANNELDOWN"]],
]** The bolded part represents the modification, which adds support for the back button.