Skip to content

Commit e5691d0

Browse files
tovamvgadreau
authored andcommitted
Fix missing spaces in info menu (MarlinFirmware#19404)
1 parent 5fdcc8d commit e5691d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Marlin/src/lcd/menu/menu_info.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ void menu_info_thermistors() {
179179
#undef THERMISTOR_ID
180180
#define THERMISTOR_ID TEMP_SENSOR_BED
181181
#include "../thermistornames.h"
182-
STATIC_ITEM_P(PSTR("BED:" THERMISTOR_NAME), SS_INVERT);
182+
STATIC_ITEM_P(PSTR("BED: " THERMISTOR_NAME), SS_INVERT);
183183
PSTRING_ITEM(MSG_INFO_MIN_TEMP, STRINGIFY(BED_MINTEMP), SS_LEFT);
184184
PSTRING_ITEM(MSG_INFO_MAX_TEMP, STRINGIFY(BED_MAXTEMP), SS_LEFT);
185185
STATIC_ITEM(TERN(WATCH_BED, MSG_INFO_RUNAWAY_ON, MSG_INFO_RUNAWAY_OFF), SS_LEFT);
@@ -189,7 +189,7 @@ void menu_info_thermistors() {
189189
#undef THERMISTOR_ID
190190
#define THERMISTOR_ID TEMP_SENSOR_CHAMBER
191191
#include "../thermistornames.h"
192-
STATIC_ITEM_P(PSTR("CHAM:" THERMISTOR_NAME), SS_INVERT);
192+
STATIC_ITEM_P(PSTR("CHAM: " THERMISTOR_NAME), SS_INVERT);
193193
PSTRING_ITEM(MSG_INFO_MIN_TEMP, STRINGIFY(CHAMBER_MINTEMP), SS_LEFT);
194194
PSTRING_ITEM(MSG_INFO_MAX_TEMP, STRINGIFY(CHAMBER_MAXTEMP), SS_LEFT);
195195
STATIC_ITEM(TERN(WATCH_CHAMBER, MSG_INFO_RUNAWAY_ON, MSG_INFO_RUNAWAY_OFF), SS_LEFT);

0 commit comments

Comments
 (0)