mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-30 07:17:59 +00:00
🐛 Fix TFT touch buttons, button colors (#25300)
This commit is contained in:
parent
d6f4f24658
commit
fbe9237a6c
@ -1611,9 +1611,9 @@
|
||||
#endif
|
||||
#if ANY(HAS_UI_320x240, HAS_UI_480x320, HAS_UI_480x272)
|
||||
#if ENABLED(TFT_COLOR_UI_PORTRAIT)
|
||||
#define LCD_HEIGHT TERN(TOUCH_SCREEN, 6, 7) // Fewer lines with touch buttons onscreen
|
||||
#else
|
||||
#define LCD_HEIGHT TERN(TOUCH_SCREEN, 8, 9) // Fewer lines with touch buttons onscreen
|
||||
#else
|
||||
#define LCD_HEIGHT TERN(TOUCH_SCREEN, 6, 7) // Fewer lines with touch buttons onscreen
|
||||
#endif
|
||||
#elif HAS_UI_1024x600
|
||||
#define LCD_HEIGHT TERN(TOUCH_SCREEN, 12, 13) // Fewer lines with touch buttons onscreen
|
||||
|
@ -178,3 +178,16 @@
|
||||
#ifndef COLOR_KILL_SCREEN_TEXT
|
||||
#define COLOR_KILL_SCREEN_TEXT COLOR_WHITE
|
||||
#endif
|
||||
|
||||
#ifndef E_BTN_COLOR
|
||||
#define E_BTN_COLOR COLOR_YELLOW
|
||||
#endif
|
||||
#ifndef X_BTN_COLOR
|
||||
#define X_BTN_COLOR COLOR_CORAL_RED
|
||||
#endif
|
||||
#ifndef Y_BTN_COLOR
|
||||
#define Y_BTN_COLOR COLOR_VIVID_GREEN
|
||||
#endif
|
||||
#ifndef Z_BTN_COLOR
|
||||
#define Z_BTN_COLOR COLOR_LIGHT_BLUE
|
||||
#endif
|
||||
|
@ -592,11 +592,6 @@ struct MotionAxisState {
|
||||
|
||||
MotionAxisState motionAxisState;
|
||||
|
||||
#define E_BTN_COLOR COLOR_YELLOW
|
||||
#define X_BTN_COLOR COLOR_CORAL_RED
|
||||
#define Y_BTN_COLOR COLOR_VIVID_GREEN
|
||||
#define Z_BTN_COLOR COLOR_LIGHT_BLUE
|
||||
|
||||
#define BTN_WIDTH 64
|
||||
#define BTN_HEIGHT 52
|
||||
#define X_MARGIN 20
|
||||
|
@ -674,11 +674,6 @@ struct MotionAxisState {
|
||||
|
||||
MotionAxisState motionAxisState;
|
||||
|
||||
#define E_BTN_COLOR COLOR_YELLOW
|
||||
#define X_BTN_COLOR COLOR_CORAL_RED
|
||||
#define Y_BTN_COLOR COLOR_VIVID_GREEN
|
||||
#define Z_BTN_COLOR COLOR_LIGHT_BLUE
|
||||
|
||||
#define BTN_WIDTH 48
|
||||
#define BTN_HEIGHT 39
|
||||
#define X_MARGIN 15
|
||||
|
@ -573,11 +573,6 @@ struct MotionAxisState {
|
||||
|
||||
MotionAxisState motionAxisState;
|
||||
|
||||
#define E_BTN_COLOR COLOR_YELLOW
|
||||
#define X_BTN_COLOR COLOR_CORAL_RED
|
||||
#define Y_BTN_COLOR COLOR_VIVID_GREEN
|
||||
#define Z_BTN_COLOR COLOR_LIGHT_BLUE
|
||||
|
||||
#define BTN_WIDTH 64
|
||||
#define BTN_HEIGHT 52
|
||||
#define X_MARGIN 20
|
||||
|
Loading…
Reference in New Issue
Block a user