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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Matena <lukasmatena@seznam.cz>2018-03-14 17:48:37 +0300
committerLukas Matena <lukasmatena@seznam.cz>2018-03-14 17:48:37 +0300
commit9f18b639a84e43f4f0f783b6023a4fd896269973 (patch)
tree73d9dbcf15a5416a9cc5a2002ab8ede159deafb6 /xs/src/libslic3r/GCode
parentcf5dfb9673a37203b36b9f56cf135d4d021d7f08 (diff)
Added filament_ramming_parameters and filament_ramming_buttons into configuration layer
Diffstat (limited to 'xs/src/libslic3r/GCode')
-rw-r--r--xs/src/libslic3r/GCode/WipeTowerPrusaMM.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/libslic3r/GCode/WipeTowerPrusaMM.hpp b/xs/src/libslic3r/GCode/WipeTowerPrusaMM.hpp
index 3c2f82ffd..160848a47 100644
--- a/xs/src/libslic3r/GCode/WipeTowerPrusaMM.hpp
+++ b/xs/src/libslic3r/GCode/WipeTowerPrusaMM.hpp
@@ -56,7 +56,7 @@ std::istream& operator>>(std::istream& stream, std::vector<T>& vect) {
we_read_something = true;
}
if (!stream.eof() && we_read_something) { // if this is not eof, we might be at separator - let's get rid of it
- stream.clear(); // if we failed on very first line or reached eof, return stream in !good() state
+ stream.clear(); // if we failed on very first line or reached eof, return stream in good() state
stream.get(); // get() whatever we are stuck at
}
return stream;