From fd5107136ce426c1e292c218eb42e3c97576eb4b Mon Sep 17 00:00:00 2001 From: bubnikv Date: Tue, 9 Apr 2019 17:15:14 +0200 Subject: [PATCH] Switching to the preview screen when the "Slice now" button is pressed. Let's wait for the response of the beta testers whether it is a good idea. --- src/slic3r/GUI/Plater.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 2f91df18732..cffec2062c9 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -747,6 +747,7 @@ Sidebar::Sidebar(Plater *parent) p->plater->export_gcode(); else p->plater->reslice(); + p->plater->select_view_3D("Preview"); }); p->btn_send_gcode->Bind(wxEVT_BUTTON, [this](wxCommandEvent&) { p->plater->send_gcode(); }); }