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

Fix segmentation fault when try show Manual on Explorer or other service apps

This commit is contained in:
Sergey Kukunin 2011-06-11 02:41:52 +03:00
parent 97adb066a3
commit 28fe39ce54

View File

@ -998,7 +998,10 @@ void GMenu2X::main() {
menu->linkRight();
break;
case MANUAL:
menu->selLinkApp()->showManual();
{
LinkApp* app = menu->selLinkApp();
if ( app ) { app->showManual(); }
}
break;
case ALTLEFT:
menu->decSectionIndex();