From: Rudolf Polzer Date: Thu, 23 Dec 2010 05:29:03 +0000 (+0100) Subject: use the bigfont for killnotify; more font size snapping to prevent blurry fonts X-Git-Tag: xonotic-v0.5.0~339^2~10 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=commitdiff_plain;h=e30a3f1263389af5b7eab928dcfd81b95aed1f07;hp=6ae67162d032e07c05b798721d417711f2d067c7 use the bigfont for killnotify; more font size snapping to prevent blurry fonts --- diff --git a/defaultXonotic.cfg b/defaultXonotic.cfg index 81740dfe89..d2d2dca6c2 100644 --- a/defaultXonotic.cfg +++ b/defaultXonotic.cfg @@ -2022,7 +2022,7 @@ utf8_enable 1 // safe font defaults r_font_hinting 1 r_font_disable_freetype 0 -r_font_size_snapping 2 +r_font_size_snapping 8 // database management set sv_db_saveasdump 0 "write server.db in dump format (loads slower, easier to read/parse)" diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 2f3ec3b174..d489955abd 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -3134,6 +3134,8 @@ void HUD_Notify (void) if(!autocvar_hud_panel_notify && !autocvar__hud_configure) return; + drawfont = hud_bigfont; + active_panel = HUD_PANEL_NOTIFY; HUD_Panel_UpdateCvars(notify); vector pos, mySize; @@ -3424,6 +3426,8 @@ void HUD_Notify (void) } } } + + drawfont = hud_font; } // Timer (#5)