Skip to content

Commit

Permalink
Changed base scoreboard player line colors
Browse files Browse the repository at this point in the history
Match the text color to the button color in base scoreboard
  • Loading branch information
robotboy655 committed Aug 7, 2014
1 parent 1bd4c87 commit 92ed794
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions garrysmod/gamemodes/base/gamemode/cl_scoreboard.lua
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ local PLAYER_LINE = {
self.Name = self:Add( "DLabel" )
self.Name:Dock( FILL )
self.Name:SetFont( "ScoreboardDefault" )
self.Name:SetDark( true )
self.Name:SetTextColor( Color( 93, 93, 93 ) )
self.Name:DockMargin( 8, 0, 0, 0 )

self.Mute = self:Add( "DImageButton" )
Expand All @@ -43,21 +43,21 @@ local PLAYER_LINE = {
self.Ping:Dock( RIGHT )
self.Ping:SetWidth( 50 )
self.Ping:SetFont( "ScoreboardDefault" )
self.Ping:SetDark( true )
self.Ping:SetTextColor( Color( 93, 93, 93 ) )
self.Ping:SetContentAlignment( 5 )

self.Deaths = self:Add( "DLabel" )
self.Deaths:Dock( RIGHT )
self.Deaths:SetWidth( 50 )
self.Deaths:SetFont( "ScoreboardDefault" )
self.Deaths:SetDark( true )
self.Deaths:SetTextColor( Color( 93, 93, 93 ) )
self.Deaths:SetContentAlignment( 5 )

self.Kills = self:Add( "DLabel" )
self.Kills:Dock( RIGHT )
self.Kills:SetWidth( 50 )
self.Kills:SetFont( "ScoreboardDefault" )
self.Kills:SetDark( true )
self.Kills:SetTextColor( Color( 93, 93, 93 ) )
self.Kills:SetContentAlignment( 5 )

self:Dock( TOP )
Expand Down

0 comments on commit 92ed794

Please sign in to comment.