mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-14 01:45:53 +08:00
#4621 Applying changes as proposed by review.
This commit is contained in:
parent
dd38214884
commit
518a72aa69
@ -4,7 +4,6 @@
|
|||||||
|
|
||||||
#include <initializer_list>
|
#include <initializer_list>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <regex>
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#include "PrintConfig.hpp"
|
#include "PrintConfig.hpp"
|
||||||
|
@ -230,7 +230,7 @@ Print::make_skirt()
|
|||||||
skirts = 1;
|
skirts = 1;
|
||||||
|
|
||||||
const std::set<size_t> extruders{ this->extruders() };
|
const std::set<size_t> extruders{ this->extruders() };
|
||||||
auto extruder_it = extruders.begin();
|
auto extruder_it = extruders.cbegin();
|
||||||
std::vector<float> e_per_mm{0}, extruded_length{0};
|
std::vector<float> e_per_mm{0}, extruded_length{0};
|
||||||
if (this->config.min_skirt_length() > 0)
|
if (this->config.min_skirt_length() > 0)
|
||||||
for (auto i : extruders)
|
for (auto i : extruders)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user