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:
authorbubnikv <bubnikv@gmail.com>2016-09-26 13:49:29 +0300
committerbubnikv <bubnikv@gmail.com>2016-09-26 13:49:29 +0300
commit088b0dab90dcfa15253111175c7fface930e3f65 (patch)
tree1ed588a6b3a7dfdd3297ffc9b6edd7d8e077b4d3 /xs/src/libslic3r/GCodeWriter.hpp
parentedc70e27d9a563d85dcda84cfbdae93fbab91672 (diff)
Bugfix: use Lift-z option for 2. extruder #3385
Thanks to https://github.com/platsch https://github.com/alexrj/Slic3r/pull/3392
Diffstat (limited to 'xs/src/libslic3r/GCodeWriter.hpp')
-rw-r--r--xs/src/libslic3r/GCodeWriter.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/xs/src/libslic3r/GCodeWriter.hpp b/xs/src/libslic3r/GCodeWriter.hpp
index 72d54215b..51dc0d6d6 100644
--- a/xs/src/libslic3r/GCodeWriter.hpp
+++ b/xs/src/libslic3r/GCodeWriter.hpp
@@ -10,7 +10,7 @@
namespace Slic3r {
class GCodeWriter {
- public:
+public:
GCodeConfig config;
std::map<unsigned int,Extruder> extruders;
bool multiple_extruders;
@@ -48,7 +48,7 @@ class GCodeWriter {
std::string unlift();
Pointf3 get_position() const;
- private:
+private:
std::string _extrusion_axis;
Extruder* _extruder;
unsigned int _last_acceleration;
@@ -60,6 +60,6 @@ class GCodeWriter {
std::string _retract(double length, double restart_extra, const std::string &comment);
};
-}
+} /* namespace Slic3r */
-#endif
+#endif /* slic3r_GCodeWriter_hpp_ */