1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-04 21:05:27 +03:00

Disactivate the binding of the app's manual on the 'Y' button.

This commit is contained in:
Ayla 2011-09-15 11:33:46 +02:00
parent 5f69930d07
commit 6ac012348d

View File

@ -1045,14 +1045,12 @@ void GMenu2X::main() {
s->write( font, tr["A: Launch link / Confirm action"], 20, 80 );
s->write( font, tr["B: Show this help menu"], 20, 95 );
s->write( font, tr["L, R: Change section"], 20, 110 );
s->write( font, tr["Y: Show manual / readme"], 20, 125 );
s->write( font, tr["SELECT: Show contextual menu"], 20, 155 );
s->write( font, tr["START: Show options menu"], 20, 170 );
#endif
#ifdef PLATFORM_GP2X
s->write( font, tr["B, Stick press: Launch link / Confirm action"], 20, 80 );
s->write( font, tr["L, R: Change section"], 20, 95 );
s->write( font, tr["Y: Show manual/readme"], 20, 110 );
s->write( font, tr["VOLUP, VOLDOWN: Change cpu clock"], 20, 125 );
s->write( font, tr["A+VOLUP, A+VOLDOWN: Change volume"], 20, 140 );
s->write( font, tr["SELECT: Show contextual menu"], 20, 155 );
@ -1133,12 +1131,6 @@ void GMenu2X::main() {
case RIGHT:
menu->linkRight();
break;
case MANUAL:
{
LinkApp* app = menu->selLinkApp();
if ( app ) { app->showManual(); }
}
break;
case ALTLEFT:
menu->decSectionIndex();
offset = menu->sectionLinks()->size()>linksPerPage ? 2 : 6;