From: apo Date: Thu, 19 Jan 2006 08:22:14 +0000 (+0000) Subject: Minor changes X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=refs%2Fheads%2FBR-D5-38-2003;p=modules%2Fgui.git Minor changes --- diff --git a/src/SVTK/SALOME_Actor.cxx b/src/SVTK/SALOME_Actor.cxx index 510d9a879..e8afb6604 100644 --- a/src/SVTK/SALOME_Actor.cxx +++ b/src/SVTK/SALOME_Actor.cxx @@ -784,7 +784,9 @@ void SALOME_Actor ::highlight(bool theIsHighlight) { - myOutline->SetBounds( GetInput()->GetBounds() ); + float aBounds[6]; + GetInput()->GetBounds(aBounds); + myOutline->SetBounds(aBounds); myOutlineActor->SetVisibility( GetVisibility() && theIsHighlight ); myIsHighlighted = theIsHighlight; }