Skip to content

Commit

Permalink
Changed default global preset "Not built" text positioning
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamWillden committed Oct 28, 2020
1 parent 3751ed9 commit 883c39d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cl_dll/ff/vgui/ff_customhudoptions_arrangementpresets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ namespace vgui
kvTemp->SetInt("textShadow", kvPreset->GetInt("textShadow", 0));
kvTemp->SetInt("textSize", kvPreset->GetInt("textSize", 3) + 1);
kvTemp->SetInt("textX", kvPreset->GetInt("textX", 25));
kvTemp->SetInt("textY", kvPreset->GetInt("textY", 25));
kvTemp->SetInt("textY", kvPreset->GetInt("textY", 20));
kvTemp->SetInt("showPanel", kvPreset->GetInt("showPanel", 1));
kvTemp->SetInt("panelColorCustom", kvPreset->GetInt("panelColorCustom", 0));
kvTemp->SetInt("panelRed", kvPreset->GetInt("panelRed", 255));
Expand Down Expand Up @@ -180,7 +180,7 @@ namespace vgui
m_pTextShadow->SetSelected(kvPreset->GetInt("textShadow", 0));
m_pTextSize->SetValue(kvPreset->GetInt("textSize", 3) + 1);
m_pTextX->SetValue(kvPreset->GetInt("textX", 25));
m_pTextY->SetValue(kvPreset->GetInt("textY", 25));
m_pTextY->SetValue(kvPreset->GetInt("textY", 20));
m_pShowPanel->SetSelected(kvPreset->GetInt("showPanel", 1));
m_pPanelColorCustom->SetSelected(kvPreset->GetInt("panelColorCustom", 0));
m_pPanelRed->SetValue(kvPreset->GetInt("panelRed", 255));
Expand Down

0 comments on commit 883c39d

Please sign in to comment.