Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsupermerill <merill@free.fr>2022-05-18 04:02:53 +0300
committersupermerill <merill@free.fr>2022-05-18 23:52:39 +0300
commitecc7861321786e7e0ed2b1db71391e1a3abcb8f5 (patch)
treed9c9fdff271b9861ce11e3e0d45da2f00a90b5d0
parentb799dab60e4ca94bf65beae44e250788141d01ae (diff)
Fix ba8f4954 : keep "on" to be compatible with moonraker regex
supermerill/SuperSlicer#2753
-rw-r--r--src/libslic3r/utils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libslic3r/utils.cpp b/src/libslic3r/utils.cpp
index 2d9a621e1..a17e9ab06 100644
--- a/src/libslic3r/utils.cpp
+++ b/src/libslic3r/utils.cpp
@@ -982,7 +982,7 @@ std::string header_slic3r_generated()
if (config_file_header_with_date)
return std::string("generated by " SLIC3R_APP_KEY " " SLIC3R_VERSION " on ") + Utils::utc_timestamp();
else
- return std::string("generated by " SLIC3R_APP_KEY " " SLIC3R_VERSION);
+ return std::string("generated by " SLIC3R_APP_KEY " " SLIC3R_VERSION " on");
}
std::string header_gcodeviewer_generated()
@@ -990,7 +990,7 @@ std::string header_gcodeviewer_generated()
if (config_file_header_with_date)
return std::string("generated by " GCODEVIEWER_APP_KEY " " SLIC3R_VERSION " on ") + Utils::utc_timestamp();
else
- return std::string("generated by " GCODEVIEWER_APP_KEY " " SLIC3R_VERSION);
+ return std::string("generated by " GCODEVIEWER_APP_KEY " " SLIC3R_VERSION " on");
}
unsigned get_current_pid()