1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-27 00:58:36 +00:00

Bugfix: adding/removing use_xft in the config had no effect unless you restarted conky, reloading the config was not enough

This commit is contained in:
Nikolas Garofil 2010-04-12 23:36:20 +02:00
parent b36fc94885
commit 0443579095
2 changed files with 4 additions and 1 deletions

View File

@ -4265,6 +4265,9 @@ static void set_default_configurations(void)
output_methods = TO_STDOUT;
#endif
#ifdef X11
#ifdef BUILD_XFT
use_xft = 0;
#endif
show_graph_scale = 0;
show_graph_range = 0;
draw_shades = 1;

View File

@ -44,7 +44,7 @@
#ifdef XFT
#include <X11/Xft/Xft.h>
int use_xft = 0;
int use_xft;
#endif
#ifdef HAVE_XDBE