Fix bugs in edit submenus so they return to origin
Expected behavior: After editing a value the menu should return to the previous place with the edited item selected. Actual behavior: Either the top (back) item from the previous screen is selected, or the menu jumps up another level. Solution: Pass the correct arguments to `lcd_goto_menu` on click when editing a value.
This commit is contained in:
parent
bedd4dab6a
commit
b45a0c4c60
|
@ -268,6 +268,10 @@ static void lcd_goto_menu(menuFunc_t menu, const bool feedback = false, const ui
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline void lcd_save_previous_menu() { prevMenu = currentMenu; prevEncoderPosition = encoderPosition; }
|
||||||
|
|
||||||
|
static void lcd_goto_previous_menu() { lcd_goto_menu(prevMenu, true, prevEncoderPosition); }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* "Info Screen"
|
* "Info Screen"
|
||||||
|
@ -466,7 +470,7 @@ void lcd_set_home_offsets() {
|
||||||
lcdDrawUpdate = 1;
|
lcdDrawUpdate = 1;
|
||||||
}
|
}
|
||||||
if (lcdDrawUpdate) lcd_implementation_drawedit(msg, "");
|
if (lcdDrawUpdate) lcd_implementation_drawedit(msg, "");
|
||||||
if (LCD_CLICKED) lcd_goto_menu(lcd_tune_menu);
|
if (LCD_CLICKED) lcd_goto_previous_menu();
|
||||||
}
|
}
|
||||||
static void lcd_babystep_x() { _lcd_babystep(X_AXIS, PSTR(MSG_BABYSTEPPING_X)); }
|
static void lcd_babystep_x() { _lcd_babystep(X_AXIS, PSTR(MSG_BABYSTEPPING_X)); }
|
||||||
static void lcd_babystep_y() { _lcd_babystep(Y_AXIS, PSTR(MSG_BABYSTEPPING_Y)); }
|
static void lcd_babystep_y() { _lcd_babystep(Y_AXIS, PSTR(MSG_BABYSTEPPING_Y)); }
|
||||||
|
@ -837,7 +841,7 @@ static void _lcd_move(const char* name, AxisEnum axis, int min, int max) {
|
||||||
if (lcdDrawUpdate) lcd_implementation_drawedit(name, ftostr31(current_position[axis]));
|
if (lcdDrawUpdate) lcd_implementation_drawedit(name, ftostr31(current_position[axis]));
|
||||||
if (LCD_CLICKED) {
|
if (LCD_CLICKED) {
|
||||||
line_to_current(axis);
|
line_to_current(axis);
|
||||||
lcd_goto_menu(lcd_move_menu_axis);
|
lcd_goto_previous_menu();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#if ENABLED(DELTA)
|
#if ENABLED(DELTA)
|
||||||
|
@ -883,7 +887,7 @@ static void lcd_move_e(
|
||||||
#endif //EXTRUDERS > 1
|
#endif //EXTRUDERS > 1
|
||||||
lcd_implementation_drawedit(pos_label, ftostr31(current_position[E_AXIS]));
|
lcd_implementation_drawedit(pos_label, ftostr31(current_position[E_AXIS]));
|
||||||
}
|
}
|
||||||
if (LCD_CLICKED) lcd_goto_menu(lcd_move_menu_axis);
|
if (LCD_CLICKED) lcd_goto_previous_menu();
|
||||||
#if EXTRUDERS > 1
|
#if EXTRUDERS > 1
|
||||||
active_extruder = original_active_extruder;
|
active_extruder = original_active_extruder;
|
||||||
#endif
|
#endif
|
||||||
|
@ -1282,7 +1286,7 @@ static void lcd_control_volumetric_menu() {
|
||||||
lcd_implementation_drawedit(PSTR(MSG_CONTRAST), itostr2(lcd_contrast));
|
lcd_implementation_drawedit(PSTR(MSG_CONTRAST), itostr2(lcd_contrast));
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
if (LCD_CLICKED) lcd_goto_menu(lcd_control_menu);
|
if (LCD_CLICKED) lcd_goto_previous_menu();
|
||||||
}
|
}
|
||||||
#endif // HAS_LCD_CONTRAST
|
#endif // HAS_LCD_CONTRAST
|
||||||
|
|
||||||
|
@ -1381,15 +1385,14 @@ static void lcd_control_volumetric_menu() {
|
||||||
lcd_implementation_drawedit(editLabel, _strFunc(((_type)((int32_t)encoderPosition + minEditValue)) / scale)); \
|
lcd_implementation_drawedit(editLabel, _strFunc(((_type)((int32_t)encoderPosition + minEditValue)) / scale)); \
|
||||||
if (isClicked) { \
|
if (isClicked) { \
|
||||||
*((_type*)editValue) = ((_type)((int32_t)encoderPosition + minEditValue)) / scale; \
|
*((_type*)editValue) = ((_type)((int32_t)encoderPosition + minEditValue)) / scale; \
|
||||||
lcd_goto_menu(prevMenu, prevEncoderPosition); \
|
lcd_goto_previous_menu(); \
|
||||||
} \
|
} \
|
||||||
return isClicked; \
|
return isClicked; \
|
||||||
} \
|
} \
|
||||||
void menu_edit_ ## _name () { _menu_edit_ ## _name(); } \
|
void menu_edit_ ## _name () { _menu_edit_ ## _name(); } \
|
||||||
void menu_edit_callback_ ## _name () { if (_menu_edit_ ## _name ()) (*callbackFunc)(); } \
|
void menu_edit_callback_ ## _name () { if (_menu_edit_ ## _name ()) (*callbackFunc)(); } \
|
||||||
static void _menu_action_setting_edit_ ## _name (const char* pstr, _type* ptr, _type minValue, _type maxValue) { \
|
static void _menu_action_setting_edit_ ## _name (const char* pstr, _type* ptr, _type minValue, _type maxValue) { \
|
||||||
prevMenu = currentMenu; \
|
lcd_save_previous_menu(); \
|
||||||
prevEncoderPosition = encoderPosition; \
|
|
||||||
\
|
\
|
||||||
lcdDrawUpdate = 2; \
|
lcdDrawUpdate = 2; \
|
||||||
currentMenu = menu_edit_ ## _name; \
|
currentMenu = menu_edit_ ## _name; \
|
||||||
|
@ -1506,7 +1509,7 @@ void lcd_quick_feedback() {
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
static void menu_action_back(menuFunc_t func) { lcd_goto_menu(func); }
|
static void menu_action_back(menuFunc_t func) { lcd_goto_menu(func); }
|
||||||
static void menu_action_submenu(menuFunc_t func) { lcd_goto_menu(func); }
|
static void menu_action_submenu(menuFunc_t func) { lcd_save_previous_menu(); lcd_goto_menu(func); }
|
||||||
static void menu_action_gcode(const char* pgcode) { enqueuecommands_P(pgcode); }
|
static void menu_action_gcode(const char* pgcode) { enqueuecommands_P(pgcode); }
|
||||||
static void menu_action_function(menuFunc_t func) { (*func)(); }
|
static void menu_action_function(menuFunc_t func) { (*func)(); }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue