diff options
| author | Dana Jansens <danakj@orodu.net> | 2010-01-28 08:37:18 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2010-01-28 08:40:07 -0500 |
| commit | 02a956b065a157212d98c149ac3f5db2ea64a0cb (patch) | |
| tree | 25866d98f4aac6202f20e1d94ff2cb1b5e68543a | |
| parent | 0cd6f4e43c355ef6b568c769a4ecb2983d5f3fa6 (diff) | |
Init all fonts to NULL, so if they arent in the config they use the default font
| -rw-r--r-- | openbox/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/openbox/config.c b/openbox/config.c index 72d05469..e7a2440b 100644 --- a/openbox/config.c +++ b/openbox/config.c @@ -985,6 +985,8 @@ void config_startup(ObtXmlInst *i) config_font_inactivewindow = NULL; config_font_menuitem = NULL; config_font_menutitle = NULL; + config_font_activeosd = NULL; + config_font_inactiveosd = NULL; obt_xml_register(i, "theme", parse_theme, NULL); |
