Add "Brightness" to Tune menu

This commit is contained in:
leptun 2019-10-19 18:45:04 +03:00
parent 0ed4a23ae7
commit d7b12faa95
1 changed files with 6 additions and 1 deletions

View File

@ -7119,7 +7119,12 @@ static void lcd_tune_menu()
default:
MENU_ITEM_FUNCTION_P(_i(MSG_SOUND_MODE_LOUD),lcd_sound_state_set);
}
#ifdef LCD_BL_PIN
if (backlightSupport)
{
MENU_ITEM_SUBMENU_P(_i("Brightness"), lcd_backlight_menu);
}
#endif //LCD_BL_PIN
MENU_END();
}