Hide 'Recording Settings' if recording driver set to NULL

This commit is contained in:
twinaphex 2015-06-21 09:12:16 +02:00
parent 0d2b37e020
commit 3291f40238

View File

@ -6956,6 +6956,8 @@ static bool setting_append_list_privacy_options(
START_SUB_GROUP(list, list_info, "State",
group_info.name, subgroup_info, parent_group);
if (strcmp(settings->record.driver, "null") != 0)
{
CONFIG_BOOL(
settings->camera.allow,
menu_hash_to_str(MENU_LABEL_CAMERA_ALLOW),
@ -6968,7 +6970,10 @@ static bool setting_append_list_privacy_options(
parent_group,
general_write_handler,
general_read_handler);
}
if (strcmp(settings->location.driver, "null") != 0)
{
CONFIG_BOOL(
settings->location.allow,
menu_hash_to_str(MENU_LABEL_LOCATION_ALLOW),
@ -6981,6 +6986,7 @@ static bool setting_append_list_privacy_options(
parent_group,
general_write_handler,
general_read_handler);
}
END_SUB_GROUP(list, list_info, parent_group);
END_GROUP(list, list_info, parent_group);