🐛 Fix ACTION_ITEM with nullptr (#23195)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
This commit is contained in:
		
				
					committed by
					
						
						Scott Lahteine
					
				
			
			
				
	
			
			
			
						parent
						
							eecbd09a46
						
					
				
				
					commit
					285d6488a3
				
			@@ -55,7 +55,7 @@ class MenuItem_button : public MenuItemBase {
 | 
			
		||||
class MenuItem_function : public MenuItem_button {
 | 
			
		||||
  public:
 | 
			
		||||
    //static inline void action(PGM_P const, const uint8_t, const menuAction_t func) { (*func)(); };
 | 
			
		||||
    static inline void action(PGM_P const, const menuAction_t func) { (*func)(); };
 | 
			
		||||
    static inline void action(PGM_P const, const menuAction_t func) { if (func) (*func)(); };
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
// GCODES_ITEM(LABEL, GCODES)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user