add a space between the header and the player list

This commit is contained in:
GenZmeY 2021-05-29 00:46:45 +03:00
parent 6a0873f33b
commit b1f726f360
2 changed files with 2 additions and 2 deletions

View File

@ -11,6 +11,6 @@
- perk (bool) - perk (bool)
- kills (bool) - kills (bool)
- assists (bool) - assists (bool)
- ovverride admin status (bool) - override admin status (bool)
3. Players and status relations 3. Players and status relations
4. Check fields char capacity (crop if text is large then cap) 4. Check fields char capacity (crop if text is large then cap)

View File

@ -217,7 +217,7 @@ function DrawMenu()
DrawTextShadowHVCenter(class'KFGFxHUD_ScoreboardWidget'.default.PingString, XPos + PingXPos, YPos, PingWBox, FontScalar); DrawTextShadowHVCenter(class'KFGFxHUD_ScoreboardWidget'.default.PingString, XPos + PingXPos, YPos, PingWBox, FontScalar);
PlayersList.XPosition = ((Canvas.ClipX - Width) * 0.5) / InputPos[2]; PlayersList.XPosition = ((Canvas.ClipX - Width) * 0.5) / InputPos[2];
PlayersList.YPosition = (YPos + (YL + 4)) / InputPos[3]; PlayersList.YPosition = (YPos + (YL + Owner.HUDOwner.ScaledBorderSize*2)) / InputPos[3];
PlayersList.YSize = (1.f - PlayersList.YPosition) - 0.15; PlayersList.YSize = (1.f - PlayersList.YPosition) - 0.15;
PlayersList.ChangeListSize(KFPRIArray.Length); PlayersList.ChangeListSize(KFPRIArray.Length);