diff --git a/indra/newview/llfloaterpreference.cpp b/indra/newview/llfloaterpreference.cpp
index bbf88060c1963c0601e1218d31312bd786cca8bb..ecbb15969c5665469b24ba8193004e0ff0132dab 100755
--- a/indra/newview/llfloaterpreference.cpp
+++ b/indra/newview/llfloaterpreference.cpp
@@ -1154,6 +1154,15 @@ void LLFloaterPreference::refreshEnabledState()
 						gSavedSettings.getBOOL("RenderAvatarVP") &&
 						(ctrl_wind_light->get()) ? TRUE : FALSE;
 
+	if (!enabled)
+	{
+		llinfos << "LLFloaterPreference: NOT ENABLING DEFFERED....feature available? "
+			<< (LLFeatureManager::getInstance()->isFeatureAvailable("RenderDeferred") ? "yup" : "nope")
+			<< " shaders? " << (shaders ? "yup" : "nope") << " FBO? " << (gGLManager.mHasFramebufferObject ? "yup" : "nope")
+			<< " renderAvVP? " << (gSavedSettings.getBOOL("RenderAvatarVP") ? "yup" : "nope")
+			<< " windlight? " << ((ctrl_wind_light->get()) ? "yup" : "nope") << llendl;
+	}
+
 	ctrl_deferred->setEnabled(enabled);
 	
 	LLCheckBoxCtrl* ctrl_ssao = getChild<LLCheckBoxCtrl>("UseSSAO");
diff --git a/indra/newview/llpanelface.cpp b/indra/newview/llpanelface.cpp
index 2d2a0d6d0c6650dbc08114845fef047053407bad..6b50a97e8d34725c13171aaeb8182e729a78618e 100644
--- a/indra/newview/llpanelface.cpp
+++ b/indra/newview/llpanelface.cpp
@@ -1878,6 +1878,7 @@ void LLPanelFace::updateMaterial()
                 material_to_set = new LLMaterial(*mMaterial);
             }
         }
+
         LLSelectMgr::getInstance()->selectionSetMaterial( material_to_set );
 	}
 	else