From 1b582ea66a30d74262876651dd67f63b9dbf2642 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci <aar@cpan.org> Date: Mon, 22 Dec 2014 10:48:05 +0100 Subject: [PATCH] Remove the "(slow)" mark on infill patterns that used to be slow in the past --- xs/src/libslic3r/PrintConfig.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xs/src/libslic3r/PrintConfig.cpp b/xs/src/libslic3r/PrintConfig.cpp index c0ebb9bd5..f50269909 100644 --- a/xs/src/libslic3r/PrintConfig.cpp +++ b/xs/src/libslic3r/PrintConfig.cpp @@ -298,9 +298,9 @@ PrintConfigDef::build_def() { Options["fill_pattern"].enum_labels.push_back("concentric"); Options["fill_pattern"].enum_labels.push_back("honeycomb"); Options["fill_pattern"].enum_labels.push_back("3D honeycomb"); - Options["fill_pattern"].enum_labels.push_back("hilbertcurve (slow)"); - Options["fill_pattern"].enum_labels.push_back("archimedeanchords (slow)"); - Options["fill_pattern"].enum_labels.push_back("octagramspiral (slow)"); + Options["fill_pattern"].enum_labels.push_back("hilbertcurve"); + Options["fill_pattern"].enum_labels.push_back("archimedeanchords"); + Options["fill_pattern"].enum_labels.push_back("octagramspiral"); Options["first_layer_acceleration"].type = coFloat; Options["first_layer_acceleration"].label = "First layer";