📺 Fix TFT Classic UI non-Touchscreen 1024x600 (#24541)

This commit is contained in:
Keith Bennett
2022-07-25 12:02:37 -07:00
committed by Scott Lahteine
parent 66369f8236
commit 1e9232723d
5 changed files with 12 additions and 7 deletions

View File

@ -791,7 +791,7 @@ static void z_minus() { moveAxis(Z_AXIS, -1); }
}
#endif
#if HAS_BED_PROBE
#if BOTH(HAS_BED_PROBE, TOUCH_SCREEN)
static void z_select() {
motionAxisState.z_selection *= -1;
quick_feedback();

View File

@ -771,7 +771,7 @@ static void z_minus() { moveAxis(Z_AXIS, -1); }
}
#endif
#if HAS_BED_PROBE
#if BOTH(HAS_BED_PROBE, TOUCH_SCREEN)
static void z_select() {
motionAxisState.z_selection *= -1;
quick_feedback();

View File

@ -772,7 +772,7 @@ static void z_minus() { moveAxis(Z_AXIS, -1); }
}
#endif
#if HAS_BED_PROBE
#if BOTH(HAS_BED_PROBE, TOUCH_SCREEN)
static void z_select() {
motionAxisState.z_selection *= -1;
quick_feedback();