Add "Bed" / "Chamber" substitutions (#18255)

This commit is contained in:
Scott Lahteine
2020-06-10 18:35:56 -05:00
committed by GitHub
parent 3bf990ec34
commit 67305f7976
4 changed files with 16 additions and 14 deletions

View File

@ -61,7 +61,7 @@ typedef struct {
menuPosition screen_history[6];
uint8_t screen_history_depth = 0;
uint8_t MenuItemBase::itemIndex; // Index number for draw and action
int8_t MenuItemBase::itemIndex; // Index number for draw and action
chimera_t editable; // Value Editing
// Menu Edit Items

View File

@ -65,10 +65,10 @@ class MenuItemBase {
public:
// An index to interject in the item label and for
// use by the action
static uint8_t itemIndex;
static int8_t itemIndex;
// Store the index of the item ahead of use by indexed items
FORCE_INLINE static void init(const uint8_t ind) { itemIndex = ind; }
FORCE_INLINE static void init(const int8_t ind) { itemIndex = ind; }
// Draw an item either selected (pre_char) or not (space) with post_char
static void _draw(const bool sel, const uint8_t row, PGM_P const pstr, const char pre_char, const char post_char);