OnRight and OnDown action are not executed on filmstrip.
This patch will enable them when spinCanFocus is false
Also on OnLeft there is this fragment of code on v1.4.0 MASTER:
Please check if the funcionality is desired (Keep pressing left, will jump to the updown button, or execute OnLeft if updown button cannot be focused). If the funcionality is the desired one, same functionality should be added in OnRight.
This patch will enable them when spinCanFocus is false
Also on OnLeft there is this fragment of code on v1.4.0 MASTER:
Code:
if (_upDownControl != null && _spinCanFocus)
{
_upDownControl.Focus = true;
}
else
{
_listType = GUIListControl.ListType.CONTROL_LIST;
this.Focus = true;
base.OnAction(action);
}
Please check if the funcionality is desired (Keep pressing left, will jump to the updown button, or execute OnLeft if updown button cannot be focused). If the funcionality is the desired one, same functionality should be added in OnRight.