mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2025-01-15 04:31:05 +02:00
Fix segmentation fault when try show Manual on Explorer or other service apps
This commit is contained in:
parent
97adb066a3
commit
28fe39ce54
@ -998,7 +998,10 @@ void GMenu2X::main() {
|
|||||||
menu->linkRight();
|
menu->linkRight();
|
||||||
break;
|
break;
|
||||||
case MANUAL:
|
case MANUAL:
|
||||||
menu->selLinkApp()->showManual();
|
{
|
||||||
|
LinkApp* app = menu->selLinkApp();
|
||||||
|
if ( app ) { app->showManual(); }
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case ALTLEFT:
|
case ALTLEFT:
|
||||||
menu->decSectionIndex();
|
menu->decSectionIndex();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user