Ariranha wrote:
> Hello all ...
> 
> I tried to find more about this item, but in the wiki shows this:
> 
> *MENU_ARROW_NAVIGATION* (needs clarification)
> 
> Use arrow keys for back and select (alternate way of navigating).
> 
> 
> How this works and should I set it to "1"?

It doesn't change much, can you understand this code?

            if config.MENU_ARROW_NAVIGATION:
                if event == MENU_LEFT:
                    event = MENU_BACK_ONE_MENU
                elif event == MENU_RIGHT:
                    event = MENU_SELECT
            else:
                if event == MENU_LEFT:
                    event = MENU_PAGEUP
                elif event == MENU_RIGHT:
                    event = MENU_PAGEDOWN

I only works in menus, the left arrow becomes the same as escape and the
right arrow becomes the same as enter.

As you guessed it is activated when it is True, 1 (non zero number) in
fact anything that is not None, False, 0, ''.

Duncan


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users

Reply via email to