1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-26 12:27:52 +00:00

fixed bug with graphs resetting colour. sf.net bug 1420473

git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@564 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Brenden Matthews 2006-03-08 05:48:34 +00:00
parent 5b4fcec386
commit 2734bc4d23
2 changed files with 10 additions and 5 deletions

View File

@ -1,11 +1,14 @@
# $Id$ # $Id$
2006-03-07
* Fixed issue where some WM's don't control conky own_window windows.
* Added newly-updated vim file detection and syntax hilighting files to svn.
* Fixed issue with graphs resetting colours (sf.net bug #1420473)
2006-03-06 2006-03-06
* Fixed battery problems when charged * Fixed battery problems when charged
* MPD code handles broken pipe now, instead of just killing conky * MPD code handles broken pipe now, instead of just killing conky
* Switch from CVS to SVN. Thanks SourceForge. * Switch from CVS to SVN. Thanks SourceForge.
* Fixed issue where some WM's don't control conky own_window windows.
* Added newly-updated vim file detection and syntax hilighting files to svn.
2006-03-05 2006-03-05
* Added patch to make $cpu stuff work on alpha (thanks Thomas Cort) * Added patch to make $cpu stuff work on alpha (thanks Thomas Cort)

View File

@ -4090,6 +4090,7 @@ static void draw_line(char *s)
int h = int h =
specials[special_index].height; specials[special_index].height;
int by; int by;
unsigned long last_colour = current_color;
#ifdef XFT #ifdef XFT
if (use_xft) { if (use_xft) {
by = cur_y - (font_ascent() + h) / 2 - 1; by = cur_y - (font_ascent() + h) / 2 - 1;
@ -4148,14 +4149,15 @@ static void draw_line(char *s)
specials specials
[special_index].height; [special_index].height;
} }
} /* if (draw_mode == BG) {
if (draw_mode == BG) {
set_foreground_color(default_bg_color); set_foreground_color(default_bg_color);
} }
else if (draw_mode == OUTLINE) { else if (draw_mode == OUTLINE) {
set_foreground_color(default_out_color); set_foreground_color(default_out_color);
} else { } else {
set_foreground_color(default_fg_color); set_foreground_color(default_fg_color);
}*/
set_foreground_color(last_colour);
} }
break; break;