This is the bug/patch tracker for Rockbox. Click here for more information.
Quick links: Bugs · Patches · Rockbox frontpage
FS#5061 - JPEG viewer - next image when zoomed in does not work
Attached to Project:
Rockbox
Opened by Nothanks Google (Suntiger) - Friday, 07 April 2006, 17:11 GMT+2
Last edited by Peter D'Hoye (petur) - Monday, 01 May 2006, 22:43 GMT+2
Opened by Nothanks Google (Suntiger) - Friday, 07 April 2006, 17:11 GMT+2
Last edited by Peter D'Hoye (petur) - Monday, 01 May 2006, 22:43 GMT+2
|
DetailsOddly enough, after the inclusion of the JPEG viewer menu patch in CVS, the buttons in the JPEG viewer which were previously used to move to the next and previous images no longer work. (on iPods, this was select+right/left).
They're still defined in the code: (JPEG_PREVIOUS and JPEG_NEXT) #elif (CONFIG_KEYPAD == IPOD_3G_PAD) || (CONFIG_KEYPAD == IPOD_4G_PAD) #define JPEG_ZOOM_IN BUTTON_SCROLL_FWD #define JPEG_ZOOM_OUT BUTTON_SCROLL_BACK #define JPEG_UP BUTTON_MENU #define JPEG_DOWN BUTTON_PLAY #define JPEG_LEFT BUTTON_LEFT #define JPEG_RIGHT BUTTON_RIGHT #define JPEG_MENU (BUTTON_SELECT | BUTTON_MENU) #define JPEG_NEXT_PRE (BUTTON_SELECT | BUTTON_RIGHT) #define JPEG_NEXT (BUTTON_SELECT | BUTTON_RIGHT | BUTTON_REL) #define JPEG_TOGGLE_SLIDESHOW (BUTTON_SELECT | BUTTON_RIGHT | BUTTON_REPEAT) #define JPEG_PREVIOUS (BUTTON_SELECT |BUTTON_LEFT) but when pressed, nothing happens. Moving to next or previous works fine when zoomed out. |
This task depends upon
FS#5362 - Bugfix #5159 & #5061 & voice clip bug (jpeg.c)
View Dependency Graph
View Dependency Graph
Closed by Dave Chapman (linuxstb)
Saturday, 20 May 2006, 15:48 GMT+2
Reason for closing: Fixed
Additional comments about closing: Fixed in CVS
Saturday, 20 May 2006, 15:48 GMT+2
Reason for closing: Fixed
Additional comments about closing: Fixed in CVS
#elif (CONFIG_KEYPAD == IPOD_3G_PAD) || (CONFIG_KEYPAD == IPOD_4G_PAD)
#define JPEG_ZOOM_IN BUTTON_SCROLL_FWD
#define JPEG_ZOOM_OUT BUTTON_SCROLL_BACK
#define JPEG_UP BUTTON_MENU
#define JPEG_DOWN BUTTON_PLAY
#define JPEG_LEFT BUTTON_LEFT
#define JPEG_RIGHT BUTTON_RIGHT
#define JPEG_MENU (BUTTON_SELECT | BUTTON_MENU)
#define JPEG_NEXT (BUTTON_SELECT | BUTTON_RIGHT)
/*#define JPEG_NEXT (BUTTON_SELECT | BUTTON_RIGHT | BUTTON_REL)*/
#define JPEG_TOGGLE_SLIDESHOW (BUTTON_SELECT | BUTTON_RIGHT | BUTTON_REPEAT)
#define JPEG_PREVIOUS (BUTTON_SELECT | BUTTON_LEFT)