Shorten pause message for 4 line LCD (#14097)
This commit is contained in:
		
				
					committed by
					
						
						Scott Lahteine
					
				
			
			
				
	
			
			
			
						parent
						
							605ec0a478
						
					
				
				
					commit
					df7733425c
				
			@@ -372,8 +372,8 @@ void _lcd_pause_message(PGM_P const msg1, PGM_P const msg2=nullptr, PGM_P const
 | 
				
			|||||||
  STATIC_ITEM_P(pause_header(), true, true);
 | 
					  STATIC_ITEM_P(pause_header(), true, true);
 | 
				
			||||||
  STATIC_ITEM_P(msg1);
 | 
					  STATIC_ITEM_P(msg1);
 | 
				
			||||||
  if (msg2) STATIC_ITEM_P(msg2);
 | 
					  if (msg2) STATIC_ITEM_P(msg2);
 | 
				
			||||||
  if (msg3) STATIC_ITEM_P(msg3);
 | 
					  if (msg3 && (LCD_HEIGHT) >= 5) STATIC_ITEM_P(msg3);
 | 
				
			||||||
  if ((!!msg2) + (!!msg3) + 2 < LCD_HEIGHT - 1) STATIC_ITEM(" ");
 | 
					  if ((!!msg2) + (!!msg3) + 2 < (LCD_HEIGHT) - 1) STATIC_ITEM(" ");
 | 
				
			||||||
  HOTEND_STATUS_ITEM();
 | 
					  HOTEND_STATUS_ITEM();
 | 
				
			||||||
  END_SCREEN();
 | 
					  END_SCREEN();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user