From f902fc3445bd84957253de803884fbb99fc36383 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Thu, 6 Feb 2020 14:23:03 +0100 Subject: [PATCH] Don't forget to copy drain holes when an object is copied --- src/slic3r/GUI/Selection.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/Selection.cpp b/src/slic3r/GUI/Selection.cpp index 224f5007d..a4f5a4126 100644 --- a/src/slic3r/GUI/Selection.cpp +++ b/src/slic3r/GUI/Selection.cpp @@ -1328,6 +1328,7 @@ void Selection::copy_to_clipboard() static_cast(dst_object->config) = static_cast(src_object->config); dst_object->sla_support_points = src_object->sla_support_points; dst_object->sla_points_status = src_object->sla_points_status; + dst_object->sla_drain_holes = src_object->sla_drain_holes; dst_object->layer_config_ranges = src_object->layer_config_ranges; // #ys_FIXME_experiment dst_object->layer_height_profile = src_object->layer_height_profile; dst_object->origin_translation = src_object->origin_translation;