mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-03-13 09:49:56 +00:00
🚸 Fix DOGM centering (#26415)
This commit is contained in:
parent
d06923d0e7
commit
235ad4dd9d
1 changed files with 1 additions and 1 deletions
|
@ -423,7 +423,7 @@ void MarlinUI::clear_lcd() { } // Automatically cleared by Picture Loop
|
|||
int8_t vlen = vstr ? utf8_strlen(vstr) : 0;
|
||||
|
||||
bool mv_colon = false;
|
||||
if (vlen) {
|
||||
if (vlen && !center) {
|
||||
// Move the leading colon from the value to the label below
|
||||
mv_colon = (*vstr == ':');
|
||||
// Shorter value, wider label
|
||||
|
|
Loading…
Add table
Reference in a new issue