From 80a04890444b467ab14edf42601a0f45219c0392 Mon Sep 17 00:00:00 2001 From: Mack Date: Thu, 24 Oct 2024 11:12:43 +0800 Subject: [PATCH] FIX:Brim Ears are ignored when cloning objects the maximum diameter is changed to 20; the diameter will not be reset; jira:STUDIO-8497 GITHUB: #5048 Change-Id: I131305671ebc00dcf6b2972994879fe4ea768a36 (cherry picked from commit 3e9006e2d47c87da40e627034d0dc71c563e98ae) --- 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 79feb0e1fc..68f1387492 100644 --- a/src/slic3r/GUI/Selection.cpp +++ b/src/slic3r/GUI/Selection.cpp @@ -2077,6 +2077,7 @@ void Selection::copy_to_clipboard() 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->brim_points = src_object->brim_points; dst_object->layer_config_ranges = src_object->layer_config_ranges; // #ys_FIXME_experiment dst_object->layer_height_profile.assign(src_object->layer_height_profile); dst_object->origin_translation = src_object->origin_translation;