Update Probe Offset Wizard for Color UI (#19742)
This commit is contained in:
		
				
					committed by
					
						 Scott Lahteine
						Scott Lahteine
					
				
			
			
				
	
			
			
			
						parent
						
							57dc1a0649
						
					
				
				
					commit
					02b668baf5
				
			| @@ -88,16 +88,20 @@ void probe_offset_wizard_menu() { | ||||
|   SUBMENU(MSG_MOVE_01MM, []{ _goto_manual_move_z( 0.1f); }); | ||||
|  | ||||
|   if ((SHORT_MANUAL_Z_MOVE) > 0.0f && (SHORT_MANUAL_Z_MOVE) < 0.1f) { | ||||
|     extern const char NUL_STR[]; | ||||
|     SUBMENU_P(NUL_STR, []{ _goto_manual_move_z(float(SHORT_MANUAL_Z_MOVE)); }); | ||||
|     MENU_ITEM_ADDON_START(0 + ENABLED(HAS_MARLINUI_HD44780)); | ||||
|       char tmp[20], numstr[10]; | ||||
|       // Determine digits needed right of decimal | ||||
|       const uint8_t digs = !UNEAR_ZERO((SHORT_MANUAL_Z_MOVE) * 1000 - int((SHORT_MANUAL_Z_MOVE) * 1000)) ? 4 : | ||||
|                            !UNEAR_ZERO((SHORT_MANUAL_Z_MOVE) *  100 - int((SHORT_MANUAL_Z_MOVE) *  100)) ? 3 : 2; | ||||
|       sprintf_P(tmp, GET_TEXT(MSG_MOVE_Z_DIST), dtostrf(SHORT_MANUAL_Z_MOVE, 1, digs, numstr)); | ||||
|     char tmp[20], numstr[10]; | ||||
|     // Determine digits needed right of decimal | ||||
|     const uint8_t digs = !UNEAR_ZERO((SHORT_MANUAL_Z_MOVE) * 1000 - int((SHORT_MANUAL_Z_MOVE) * 1000)) ? 4 : | ||||
|                           !UNEAR_ZERO((SHORT_MANUAL_Z_MOVE) *  100 - int((SHORT_MANUAL_Z_MOVE) *  100)) ? 3 : 2; | ||||
|     sprintf_P(tmp, GET_TEXT(MSG_MOVE_Z_DIST), dtostrf(SHORT_MANUAL_Z_MOVE, 1, digs, numstr)); | ||||
|     #if DISABLED(HAS_GRAPHICAL_TFT) | ||||
|       extern const char NUL_STR[]; | ||||
|       SUBMENU_P(NUL_STR, []{ _goto_manual_move_z(float(SHORT_MANUAL_Z_MOVE)); }); | ||||
|       MENU_ITEM_ADDON_START(0 + ENABLED(HAS_MARLINUI_HD44780)); | ||||
|       lcd_put_u8str(tmp); | ||||
|     MENU_ITEM_ADDON_END(); | ||||
|       MENU_ITEM_ADDON_END(); | ||||
|     #else | ||||
|       SUBMENU_P(tmp, []{ _goto_manual_move_z(float(SHORT_MANUAL_Z_MOVE)); }); | ||||
|     #endif | ||||
|   } | ||||
|  | ||||
|   ACTION_ITEM(MSG_BUTTON_DONE, []{ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user