From 612ca526763c595ba2b88f2e155a3b71bb85cdd2 Mon Sep 17 00:00:00 2001 From: InsanityAutomation Date: Tue, 24 Apr 2018 11:03:41 -0400 Subject: [PATCH] Disable brightness and rename menu --- Marlin/language_en.h | 2 +- Marlin/ultralcd.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/language_en.h b/Marlin/language_en.h index 04c498a04c..0bb5f083c9 100644 --- a/Marlin/language_en.h +++ b/Marlin/language_en.h @@ -916,7 +916,7 @@ #define MSG_INFO_PROTOCOL _UxGT("Protocol") #endif #ifndef MSG_CASE_LIGHT - #define MSG_CASE_LIGHT _UxGT("LED") + #define MSG_CASE_LIGHT _UxGT("LED Light") #endif #ifndef MSG_CASE_LIGHT_BRIGHTNESS #define MSG_CASE_LIGHT_BRIGHTNESS _UxGT("LED BRIGHTNESS") diff --git a/Marlin/ultralcd.cpp b/Marlin/ultralcd.cpp index 01859d5e15..46a92a9199 100644 --- a/Marlin/ultralcd.cpp +++ b/Marlin/ultralcd.cpp @@ -933,7 +933,7 @@ void kill_screen(const char* lcd_msg) { // ^ Main // MENU_BACK(MSG_MAIN); - MENU_ITEM_EDIT_CALLBACK(int8, MSG_CASE_LIGHT_BRIGHTNESS, &case_light_brightness, 0, 255, update_case_light, true); + //MENU_ITEM_EDIT_CALLBACK(int8, MSG_CASE_LIGHT_BRIGHTNESS, &case_light_brightness, 0, 255, update_case_light, true); MENU_ITEM_EDIT_CALLBACK(bool, MSG_CASE_LIGHT, (bool*)&case_light_on, update_case_light); END_MENU(); }