1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0025906: Visualization, V3d_View::Rotation() - eliminate erroneous viewer redraw within disabled immediate update

the superfluous view update of Rotation method removed because of used before Rotate method already does immediate update
This commit is contained in:
ibs 2015-03-06 18:52:30 +03:00 committed by bugmaster
parent 18ee2939c3
commit b12a3e54fc

View File

@ -2728,8 +2728,8 @@ void V3d_View::Rotation(const Standard_Integer X,
dx = (Standard_Real(X) - sx) * M_PI / rx;
dy = (sy - Standard_Real(Y)) * M_PI / ry;
}
Rotate(dx, dy, dz, gx, gy, gz, Standard_False);
if( !myImmediateUpdate ) Update();
}
//=============================================================================