Set sel_font to NULL at start. Fixes #16

This commit is contained in:
LemonBoy 2013-03-15 17:00:37 +01:00
parent f95757bc1a
commit c487ff65bc
1 changed files with 1 additions and 1 deletions

2
bar.c
View File

@ -45,7 +45,7 @@ static xcb_gcontext_t underl_gc;
static int bar_width;
static int bar_bottom = BAR_BOTTOM;
static fontset_item_t fontset[FONT_MAX];
static fontset_item_t *sel_font = &fontset[FONT_MAIN];
static fontset_item_t *sel_font = NULL;
static const unsigned palette[] = {COLOR0,COLOR1,COLOR2,COLOR3,COLOR4,COLOR5,COLOR6,COLOR7,COLOR8,COLOR9};