1
0
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:
alexgrach 2023-02-01 10:40:13 +03:00 committed by GitHub
parent d6f4f24658
commit fbe9237a6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 15 additions and 17 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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