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:
authorVojtech Kral <vojtech@kral.hk>2018-06-04 18:47:01 +0300
committerVojtech Kral <vojtech@kral.hk>2018-06-07 16:41:34 +0300
commit2e061994d4a602929658c453aaf32e13751eccc2 (patch)
treee80087965d8d73eecee47022c6d20c9c1cb039a6 /xs/src/libslic3r/GCodeSender.hpp
parent92875709e1881fe3f374cd06321dacc3edbbd4c6 (diff)
Fix: GCodeSender: Line number resynchronisation
Diffstat (limited to 'xs/src/libslic3r/GCodeSender.hpp')
-rw-r--r--xs/src/libslic3r/GCodeSender.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/libslic3r/GCodeSender.hpp b/xs/src/libslic3r/GCodeSender.hpp
index 3022993cb..d7663ca55 100644
--- a/xs/src/libslic3r/GCodeSender.hpp
+++ b/xs/src/libslic3r/GCodeSender.hpp
@@ -51,7 +51,7 @@ class GCodeSender : private boost::noncopyable {
bool can_send;
bool queue_paused;
size_t sent;
- std::vector<std::string> last_sent;
+ std::deque<std::string> last_sent;
// this mutex guards log, T, B
mutable boost::mutex log_mutex;