From 966d3513f9b268f361ba4c1f612d954db9e4adce Mon Sep 17 00:00:00 2001 From: apo Date: Thu, 19 Jan 2006 08:22:14 +0000 Subject: [PATCH] Minor changes --- src/SVTK/SALOME_Actor.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; } -- 2.39.2