From bad81e93db5530df60fcc83545c709f6fda58362 Mon Sep 17 00:00:00 2001 From: terencehill Date: Fri, 4 May 2012 20:08:43 +0200 Subject: [PATCH] Fix broken layout with alignment on the left --- qcsrc/client/hud.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 93b28fb45..e901e9d2d 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -5267,7 +5267,7 @@ void HUD_QuickMenu_DrawEntry(vector pos, string s, vector fontsize) drawcolorcodedstring(pos + eX * offset, entry, fontsize, panel_fg_alpha, DRAWFLAG_ADDITIVE); } else - drawcolorcodedstring(pos + eY * (panel_size_y - fontsize_y), entry, fontsize, panel_fg_alpha, DRAWFLAG_ADDITIVE); + drawcolorcodedstring(pos, entry, fontsize, panel_fg_alpha, DRAWFLAG_ADDITIVE); } void HUD_QuickMenu(void) { -- 2.39.2