Tweak some lambdas

This commit is contained in:
Scott Lahteine
2020-03-18 10:30:19 -05:00
parent 252178fe62
commit abea6d5787
4 changed files with 4 additions and 4 deletions

View File

@@ -227,7 +227,7 @@ millis_t MarlinUI::next_button_update_ms; // = 0
SETCURSOR(col, row);
if (!string) return;
auto _newline = [&col, &row]() {
auto _newline = [&col, &row]{
col = 0; row++; // Move col to string len (plus space)
SETCURSOR(0, row); // Simulate carriage return
};