From 83b427b7e23d180cf16b39aaa26cac49eff78f8c Mon Sep 17 00:00:00 2001 From: tao wang Date: Sat, 3 Sep 2022 16:29:13 +0800 Subject: [PATCH] FIX:synchronize the add and import actions Change-Id: I3fbd52d5d554001af4bea27bbf6bb6feee6e230d --- src/slic3r/GUI/Plater.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index fc783375d..11ac4958a 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -5276,9 +5276,9 @@ void Plater::priv::on_process_completed(SlicingProcessCompletedEvent &evt) void Plater::priv::on_action_add(SimpleEvent&) { if (q != nullptr) { - //q->add_model(); + q->add_model(); //BBS open file in toolbar add - q->add_file(); + //q->add_file(); } }