From: terencehill Date: Sun, 15 May 2022 12:51:58 +0000 (+0200) Subject: Apply panel alpha to centerprint title. It fixes title not fading out on menu display X-Git-Tag: xonotic-v0.8.5~35 X-Git-Url: http://git.xonotic.org/?a=commitdiff_plain;h=b86e7f5b0c02b60c32804b800472411e795b04ce;hp=60532e133db4dcb81659a5283bca23a1567cacf9;p=xonotic%2Fxonotic-data.pk3dir.git Apply panel alpha to centerprint title. It fixes title not fading out on menu display --- diff --git a/qcsrc/client/hud/panel/centerprint.qc b/qcsrc/client/hud/panel/centerprint.qc index 1436f2ef6..1af0e3301 100644 --- a/qcsrc/client/hud/panel/centerprint.qc +++ b/qcsrc/client/hud/panel/centerprint.qc @@ -278,14 +278,14 @@ void HUD_CenterPrint() if (centerprint_title_left != "" && align == 0.5) // Center line at the main word (for duels) pos.x += (stringwidth(centerprint_title_right, true, fontsize) - stringwidth(centerprint_title_left, true, fontsize)) / 2; - drawcolorcodedstring(pos, centerprint_title, fontsize, 1, DRAWFLAG_NORMAL); + drawcolorcodedstring(pos, centerprint_title, fontsize, panel_fg_alpha, DRAWFLAG_NORMAL); if (autocvar_hud_panel_centerprint_flip) pos.y -= cp_fontsize.y * CENTERPRINT_TITLE_SPACING; else pos.y += fontsize.y + (hud_fontsize.y * CENTERPRINT_TITLE_SPACING); - drawfill(pos, vec2(width, 1), '1 1 1', 1, DRAWFLAG_NORMAL); + drawfill(pos, vec2(width, 1), '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL); if (autocvar_hud_panel_centerprint_flip) pos.y -= cp_fontsize.y * CENTERPRINT_TITLE_SPACING;