From c1e44eb59196b3999ba41cc5731fb5dd4ec4ee55 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Sun, 28 Dec 2014 14:58:24 +0100 Subject: [PATCH] Fixed extra comment that prevented the Export STL button from working after the recent changes in plater layout. #2458 --- lib/Slic3r/GUI/Plater.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/GUI/Plater.pm b/lib/Slic3r/GUI/Plater.pm index b874cd9583..cd56177786 100644 --- a/lib/Slic3r/GUI/Plater.pm +++ b/lib/Slic3r/GUI/Plater.pm @@ -221,7 +221,7 @@ sub new { $self->{send_gcode_file} = $self->export_gcode(Wx::StandardPaths::Get->GetTempDir()); Slic3r::thread_cleanup(); }); - #EVT_BUTTON($self, $self->{btn_export_stl}, \&export_stl); + EVT_BUTTON($self, $self->{btn_export_stl}, \&export_stl); if ($self->{htoolbar}) { EVT_TOOL($self, TB_ADD, sub { $self->add; });