From b2ab15c2e1e4c57de784606d886c4f78aa74200c Mon Sep 17 00:00:00 2001 From: EvilSpirit Date: Sun, 7 Aug 2016 20:14:18 +0700 Subject: [PATCH] Do not clear selection during operations that don't need it. Specifically, during "Align View onto Workplane" when we are locked in workplane (in which case it always aligns onto that workplane). --- src/graphicswin.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/graphicswin.cpp b/src/graphicswin.cpp index f91d2ea..c522dee 100644 --- a/src/graphicswin.cpp +++ b/src/graphicswin.cpp @@ -506,7 +506,6 @@ void GraphicsWindow::MenuView(Command id) { case Command::ONTO_WORKPLANE: if(SS.GW.LockedInWorkplane()) { SS.GW.AnimateOntoWorkplane(); - SS.GW.ClearSuper(); SS.ScheduleShowTW(); break; } // if not in 2d mode fall through and use ORTHO logic