From 6ac012348d89f3b8f0c1e4f96e04314ede0b55b4 Mon Sep 17 00:00:00 2001 From: Ayla Date: Thu, 15 Sep 2011 11:33:46 +0200 Subject: [PATCH] Disactivate the binding of the app's manual on the 'Y' button. --- src/gmenu2x.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/gmenu2x.cpp b/src/gmenu2x.cpp index 522c1fa..9a67879 100644 --- a/src/gmenu2x.cpp +++ b/src/gmenu2x.cpp @@ -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;