Hide Help menu until there is useful info to be shown
This commit is contained in:
parent
5d2b5e8722
commit
ee9b6ba78e
|
@ -9493,14 +9493,6 @@ static int materialui_list_push(void *data, void *userdata,
|
||||||
false);
|
false);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (settings->bools.menu_show_help)
|
|
||||||
{
|
|
||||||
MENU_DISPLAYLIST_PARSE_SETTINGS_ENUM(
|
|
||||||
info->list,
|
|
||||||
MENU_ENUM_LABEL_HELP_LIST,
|
|
||||||
PARSE_ACTION,
|
|
||||||
false);
|
|
||||||
}
|
|
||||||
#if !defined(IOS)
|
#if !defined(IOS)
|
||||||
|
|
||||||
if (settings->bools.menu_show_restart_retroarch)
|
if (settings->bools.menu_show_restart_retroarch)
|
||||||
|
|
|
@ -8167,15 +8167,6 @@ static int ozone_list_push(void *data, void *userdata,
|
||||||
false);
|
false);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (settings->bools.menu_show_help)
|
|
||||||
{
|
|
||||||
MENU_DISPLAYLIST_PARSE_SETTINGS_ENUM(
|
|
||||||
info->list,
|
|
||||||
MENU_ENUM_LABEL_HELP_LIST,
|
|
||||||
PARSE_ACTION,
|
|
||||||
false);
|
|
||||||
}
|
|
||||||
|
|
||||||
#if !defined(IOS)
|
#if !defined(IOS)
|
||||||
if (settings->bools.menu_show_restart_retroarch)
|
if (settings->bools.menu_show_restart_retroarch)
|
||||||
{
|
{
|
||||||
|
|
|
@ -7279,15 +7279,6 @@ static int xmb_list_push(void *data, void *userdata,
|
||||||
false);
|
false);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (menu_show_help)
|
|
||||||
{
|
|
||||||
MENU_DISPLAYLIST_PARSE_SETTINGS_ENUM(
|
|
||||||
info->list,
|
|
||||||
MENU_ENUM_LABEL_HELP_LIST,
|
|
||||||
PARSE_ACTION,
|
|
||||||
false);
|
|
||||||
}
|
|
||||||
|
|
||||||
#if !defined(IOS)
|
#if !defined(IOS)
|
||||||
if (menu_show_restart_ra)
|
if (menu_show_restart_ra)
|
||||||
{
|
{
|
||||||
|
|
|
@ -13201,11 +13201,6 @@ bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type,
|
||||||
PARSE_ACTION, false) == 0)
|
PARSE_ACTION, false) == 0)
|
||||||
count++;
|
count++;
|
||||||
#endif
|
#endif
|
||||||
if (settings->bools.menu_show_help)
|
|
||||||
if (MENU_DISPLAYLIST_PARSE_SETTINGS_ENUM(info->list,
|
|
||||||
MENU_ENUM_LABEL_HELP_LIST,
|
|
||||||
PARSE_ACTION, false) == 0)
|
|
||||||
count++;
|
|
||||||
|
|
||||||
if (settings->bools.menu_show_restart_retroarch)
|
if (settings->bools.menu_show_restart_retroarch)
|
||||||
if (MENU_DISPLAYLIST_PARSE_SETTINGS_ENUM(info->list,
|
if (MENU_DISPLAYLIST_PARSE_SETTINGS_ENUM(info->list,
|
||||||
|
|
Loading…
Reference in New Issue