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).
This commit is contained in:
EvilSpirit 2016-08-07 20:14:18 +07:00 committed by whitequark
parent bcd43c7c24
commit bfef091ac9

View File

@ -488,7 +488,6 @@ void GraphicsWindow::MenuView(int id) {
case MNU_ONTO_WORKPLANE: case MNU_ONTO_WORKPLANE:
if(SS.GW.LockedInWorkplane()) { if(SS.GW.LockedInWorkplane()) {
SS.GW.AnimateOntoWorkplane(); SS.GW.AnimateOntoWorkplane();
SS.GW.ClearSuper();
SS.ScheduleShowTW(); SS.ScheduleShowTW();
break; break;
} // if not in 2d mode fall through and use ORTHO logic } // if not in 2d mode fall through and use ORTHO logic