mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-26 06:44:18 +00:00
gameui: don`t show FOVValueLabel if fov_desired cvar is not exists
This commit is contained in:
parent
4ae9719b74
commit
3b475331f2
@ -448,6 +448,12 @@ public:
|
|||||||
{
|
{
|
||||||
pFOV->SetVisible( false );
|
pFOV->SetVisible( false );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pFOV = FindChildByName( "FovValueLabel" );
|
||||||
|
if ( pFOV )
|
||||||
|
{
|
||||||
|
pFOV->SetVisible( false );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
MarkDefaultSettingsAsRecommended();
|
MarkDefaultSettingsAsRecommended();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user