From: terencehill Date: Thu, 8 Sep 2016 20:10:56 +0000 (+0200) Subject: Rankings: Slightly smaller time column X-Git-Tag: xonotic-v0.8.2~600^2~1 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=3038d3f8ffbe40802cd9cd6733ee2ec0f6001bf4;p=xonotic%2Fxonotic-data.pk3dir.git Rankings: Slightly smaller time column --- diff --git a/qcsrc/client/hud/panel/scoreboard.qc b/qcsrc/client/hud/panel/scoreboard.qc index c6df590b4..58e962e0d 100644 --- a/qcsrc/client/hud/panel/scoreboard.qc +++ b/qcsrc/client/hud/panel/scoreboard.qc @@ -1322,7 +1322,7 @@ vector Scoreboard_Rankings_Draw(vector pos, entity pl, vector rgb, vector bg_siz } float ranksize = 3 * hud_fontsize.x; - float timesize = 5.5 * hud_fontsize.x; + float timesize = 5 * hud_fontsize.x; vector columnsize = eX * (ranksize + timesize + namesize + hud_fontsize.x) + eY * 1.25 * hud_fontsize.y; int columns = max(1, floor((panel_size.x - 2 * panel_bg_padding) / columnsize.x)); columns = min(columns, RANKINGS_RECEIVED_CNT);