From ab171441aaa9d0206f22ff45f590fc9015cea47a Mon Sep 17 00:00:00 2001 From: enricoturri1966 Date: Wed, 19 Jan 2022 13:26:58 +0100 Subject: [PATCH] Follow-up of 4b4d1c2f2a208d9647f17d2dcc5bf9f53d74f33f - Restored line deleted by mistake --- src/libslic3r/GCodeReader.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libslic3r/GCodeReader.cpp b/src/libslic3r/GCodeReader.cpp index 0fd09d920c..c8a9b790fc 100644 --- a/src/libslic3r/GCodeReader.cpp +++ b/src/libslic3r/GCodeReader.cpp @@ -74,6 +74,7 @@ const char* GCodeReader::parse_line_internal(const char *ptr, const char *end, G if (axis != NUM_AXES_WITH_UNKNOWN) { // Try to parse the numeric value. double v; + c = skip_whitespaces(++c); auto [pend, ec] = fast_float::from_chars(c, end, v); if (pend != c && is_end_of_word(*pend)) { // The axis value has been parsed correctly.