We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33e3809 commit 9382818Copy full SHA for 9382818
Marlin/src/lcd/menu/menu_main.cpp
@@ -233,9 +233,6 @@ void menu_configuration();
233
#endif
234
235
void menu_main() {
236
- #if ENABLED(SDSUPPORT) && !defined(MEDIA_MENU_AT_TOP) && !HAS_ENCODER_WHEEL
237
- #define MEDIA_MENU_AT_TOP
238
- #endif
239
240
const bool busy = printingIsActive()
241
#if ENABLED(SDSUPPORT)
@@ -247,6 +244,12 @@ void menu_main() {
247
244
START_MENU();
248
245
BACK_ITEM(MSG_INFO_SCREEN);
249
246
+ #if ENABLED(SDSUPPORT)
+ #if !defined(MEDIA_MENU_AT_TOP) && !HAS_ENCODER_WHEEL
+ #define MEDIA_MENU_AT_TOP
250
+ #endif
251
252
+
253
if (busy) {
254
#if MACHINE_CAN_PAUSE
255
ACTION_ITEM(MSG_PAUSE_PRINT, ui.pause_print);
0 commit comments