SINGLE_TOUCH_NAVIGATION Follow Up (#20213)
This commit is contained in:
		
				
					committed by
					
						 Scott Lahteine
						Scott Lahteine
					
				
			
			
				
	
			
			
			
						parent
						
							7ad127668d
						
					
				
				
					commit
					264e921d3f
				
			| @@ -156,10 +156,11 @@ void Touch::touch(touch_control_t *control) { | ||||
|  | ||||
|     case MENU_SCREEN: ui.goto_screen((screenFunc_t)control->data); break; | ||||
|     case BACK: ui.goto_previous_screen(); break; | ||||
|     case CLICK: | ||||
|     case MENU_CLICK: | ||||
|       TERN_(SINGLE_TOUCH_NAVIGATION, ui.encoderPosition = control->data); | ||||
|       ui.lcd_clicked = true; | ||||
|       break; | ||||
|     case CLICK: ui.lcd_clicked = true; break; | ||||
|     #if HAS_RESUME_CONTINUE | ||||
|       case RESUME_CONTINUE: extern bool wait_for_user; wait_for_user = false; break; | ||||
|     #endif | ||||
|   | ||||
| @@ -45,6 +45,7 @@ enum TouchControlType : uint16_t { | ||||
|   PAGE_UP, | ||||
|   PAGE_DOWN, | ||||
|   CLICK, | ||||
|   MENU_CLICK, | ||||
|   RESUME_CONTINUE, | ||||
|   SLIDER, | ||||
|   INCREASE, | ||||
|   | ||||
| @@ -652,7 +652,7 @@ void menu_item(const uint8_t row, bool sel ) { | ||||
|  | ||||
|   menu_line(row, sel ? COLOR_SELECTION_BG : COLOR_BACKGROUND); | ||||
|   #if ENABLED(TOUCH_SCREEN) | ||||
|     const TouchControlType tct = TERN(SINGLE_TOUCH_NAVIGATION, true, sel) ? CLICK : MENU_ITEM; | ||||
|     const TouchControlType tct = TERN(SINGLE_TOUCH_NAVIGATION, true, sel) ? MENU_CLICK : MENU_ITEM; | ||||
|     touch.add_control(tct, 0, 2 + 34 * row, TFT_WIDTH, 32, encoderTopLine + row); | ||||
|   #endif | ||||
| } | ||||
|   | ||||
| @@ -659,7 +659,7 @@ void menu_item(const uint8_t row, bool sel ) { | ||||
|  | ||||
|   menu_line(row, sel ? COLOR_SELECTION_BG : COLOR_BACKGROUND); | ||||
|   #if ENABLED(TOUCH_SCREEN) | ||||
|     const TouchControlType tct = TERN(SINGLE_TOUCH_NAVIGATION, true, sel) ? CLICK : MENU_ITEM; | ||||
|     const TouchControlType tct = TERN(SINGLE_TOUCH_NAVIGATION, true, sel) ? MENU_CLICK : MENU_ITEM; | ||||
|     touch.add_control(tct, 0, 4 + 45 * row, TFT_WIDTH, 43, encoderTopLine + row); | ||||
|   #endif | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user