Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorVojtech Kral <vojtech@kral.hk>2018-12-05 17:22:03 +0300
committerVojtech Kral <vojtech@kral.hk>2018-12-07 15:58:44 +0300
commit0c7c9d5754ca809bca7a7f87e3f296d1f11a4a1c (patch)
treefd01a320d7fc457082185181fe8ada45a74db7ed /lib
parent8fc723b746b4f7067bf705f5515627b3b887ec8f (diff)
Plater: single object STL export and reloading
Based on Plater.pm`export_object_stl() and reload_from_disk()
Diffstat (limited to 'lib')
-rw-r--r--lib/Slic3r/GUI/Plater.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Slic3r/GUI/Plater.pm b/lib/Slic3r/GUI/Plater.pm
index d2a7a23b1..db360c811 100644
--- a/lib/Slic3r/GUI/Plater.pm
+++ b/lib/Slic3r/GUI/Plater.pm
@@ -1876,7 +1876,7 @@ sub export_stl {
$self->statusbar->SetStatusText(L("STL file exported to ").$output_file);
}
-# XXX: not done
+# XXX: VK: done
sub reload_from_disk {
my ($self) = @_;
@@ -1908,7 +1908,7 @@ sub reload_from_disk {
$self->remove($obj_idx);
}
-# XXX: VK: done
+# XXX: VK: integrated into Plater::export_stl()
sub export_object_stl {
my ($self) = @_;
my ($obj_idx, $object) = $self->selected_object;