INTEGRATION: CWS impress145 (1.32.108); FILE MERGED
2008/06/18 11:54:18 aw 1.32.108.1: #i85887# need to invalidate BoundSnapRects when 3D Scenes volume changes
This commit is contained in:
parent
6b7567443e
commit
80ba954f9b
1 changed files with 14 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
|||
* OpenOffice.org - a multi-platform office productivity suite
|
||||
*
|
||||
* $RCSfile: scene3d.cxx,v $
|
||||
* $Revision: 1.32 $
|
||||
* $Revision: 1.33 $
|
||||
*
|
||||
* This file is part of OpenOffice.org.
|
||||
*
|
||||
|
@ -825,6 +825,19 @@ void E3dScene::InitTransformationSet()
|
|||
// 3D Ausgabe vorbereiten, Maximas holen in DeviceKoordinaten
|
||||
basegfx::B3DRange aVolume(FitInSnapRect());
|
||||
|
||||
// #i85887#
|
||||
static basegfx::B3DRange aLastVolume;
|
||||
if(aVolume != aLastVolume)
|
||||
{
|
||||
// The BoundRects for the contained 3D SdrObjects depend on the
|
||||
// calculated BoundVolume. If the BoundVolume changes, those rects
|
||||
// need to be invalidated. Since the first inits when importing a ODF
|
||||
// work with wrong 3D Volumes, the initially calculated BoundRects
|
||||
// tend to be wrong and need to be invalidated on 3D Volume change.
|
||||
SetRectsDirty();
|
||||
aLastVolume = aVolume;
|
||||
}
|
||||
|
||||
// Maximas fuer Abbildung verwenden
|
||||
rSet.SetDeviceVolume(aVolume, FALSE);
|
||||
rSet.SetViewportRectangle(aBound);
|
||||
|
|
Loading…
Reference in a new issue