This commit is contained in:
Glenn Maynard
2005-07-19 06:20:18 +00:00
parent c4495e3900
commit a305c072c0
3 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -256,9 +256,9 @@ void ScreenNetSelectBase::UpdateUsers()
void UtilSetQuadInit( Actor& actor, const CString &sClassName )
{
ActorUtil::SetXYAndOnCommand( actor, sClassName );
actor.SetDiffuse( THEME->GetMetricC( sClassName, actor.m_sName + "Color" ) );
actor.SetWidth( THEME->GetMetricF( sClassName, actor.m_sName + "Width" ) );
actor.SetHeight( THEME->GetMetricF( sClassName, actor.m_sName + "Height" ) );
actor.SetDiffuse( THEME->GetMetricC( sClassName, actor.GetName() + "Color" ) );
actor.SetWidth( THEME->GetMetricF( sClassName, actor.GetName() + "Width" ) );
actor.SetHeight( THEME->GetMetricF( sClassName, actor.GetName() + "Height" ) );
}
#endif