From 75ffa329808309d1390fbf72762e5559e415cc89 Mon Sep 17 00:00:00 2001 From: Knutwurst <36196269+knutwurst@users.noreply.github.com> Date: Tue, 30 May 2023 16:07:26 +0200 Subject: [PATCH] Use SENDLINE instead of SEND to create directory name on anycubic 1.0 display. --- Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp b/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp index 9a642319..85eb424d 100755 --- a/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp +++ b/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp @@ -1031,9 +1031,9 @@ void AnycubicTouchscreenClass::RenderCurrentFolder(uint16_t selectedNumber) { SENDLINE_PGM(".gcode"); #else SEND_PGM("/"); - SEND(currentFileList.shortFilename()); + SENDLINE(currentFileList.shortFilename()); SEND_PGM("/"); - SENDLINE(outputString); + SENDLINE(currentFileList.filename()); #endif SERIAL_ECHO(count); SERIAL_ECHOPGM(": /");