diff --git a/indra/newview/llselectmgr.cpp b/indra/newview/llselectmgr.cpp
index 68e4d56c81ad6c415111685b800495cb366880f8..74022cee01e5fbb7586203f1ceb83ef84156048b 100644
--- a/indra/newview/llselectmgr.cpp
+++ b/indra/newview/llselectmgr.cpp
@@ -5861,15 +5861,18 @@ void LLSelectMgr::renderSilhouettes(BOOL for_hud)
 
 		BOOL is_hud_object = objectp->isHUDAttachment();
 
+		if (!is_hud_object)
+		{
+			gGL.loadIdentity();
+			gGL.multMatrix(gGLModelView);
+		}
+
 		if (objectp->mDrawable->isActive())
 		{
-			gGL.loadMatrix(gGLModelView);
 			gGL.multMatrix((F32*)objectp->getRenderMatrix().mMatrix);
 		}
 		else if (!is_hud_object)
 		{
-			gGL.loadIdentity();
-			gGL.multMatrix(gGLModelView);
 			LLVector3 trans = objectp->getRegion()->getOriginAgent();
 			gGL.translatef(trans.mV[0], trans.mV[1], trans.mV[2]);
 		}
@@ -5954,6 +5957,10 @@ void LLSelectMgr::renderSilhouettes(BOOL for_hud)
                     {
                         hlColor = sHighlightInspectColor;
                     }
+                    else if (node->isTransient())
+                    {
+                        hlColor = sContextSilhouetteColor;
+                    }
                     renderMeshSelection_f(node, objectp, hlColor);
                 }
                 else