From b001eca21f21b00af1fcc68e0a54570e1510bc07 Mon Sep 17 00:00:00 2001 From: Enrico Turri Date: Tue, 18 Jun 2019 14:45:10 +0200 Subject: [PATCH] #2528 - New project command automatically switches to 3D editor view --- 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 297cc9f2c..942b77725 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -3322,6 +3322,7 @@ SLAPrint& Plater::sla_print() { return p->sla_print; } void Plater::new_project() { + p->select_view_3D("3D"); wxPostEvent(p->view3D->get_wxglcanvas(), SimpleEvent(EVT_GLTOOLBAR_DELETE_ALL)); }