Quellcode durchsuchen

Fix ExtUI automatic font scaling (#18377)

RudolphRiedel vor 4 Jahren
Ursprung
Commit
e65e2f33f1
Es ist kein Account mit der E-Mail-Adresse des Committers verbunden

+ 1
- 1
Marlin/src/lcd/extui/lib/ftdi_eve_touch_ui/ftdi_eve_lib/extended/command_processor.h Datei anzeigen

@@ -315,7 +315,7 @@ class CommandProcessor : public CLCD::CommandFifo {
315 315
       #ifdef TOUCH_UI_USE_UTF8
316 316
         const bool is_utf8 = has_utf8_chars(text);
317 317
       #endif
318
-      for (;font >= 26;) {
318
+      for (;font > 26;) {
319 319
         int16_t width, height;
320 320
         #ifdef TOUCH_UI_USE_UTF8
321 321
           if (is_utf8) {

Laden…
Abbrechen
Speichern