# HG changeset patch # User Nathan Walp # Date 1049151795 0 # Node ID d090282c42f762905c2877ab8142b8a91cd2f174 # Parent 8a20332821b6be81d71242a3f77b268cafa37580 [gaim-migrate @ 5264] Robot101 is picky, and he spells color wrong ;-) committer: Tailor Script diff -r 8a20332821b6 -r d090282c42f7 src/buddy.c --- a/src/buddy.c Mon Mar 31 22:55:51 2003 +0000 +++ b/src/buddy.c Mon Mar 31 23:03:15 2003 +0000 @@ -900,7 +900,7 @@ /* Idle grey buddies affects the whole row. This converts the status icon to greyscale. */ - if (!b->present && blist_options & OPT_BLIST_SHOW_OFFLINE) + if (!b->present) gdk_pixbuf_saturate_and_pixelate(scale, scale, 0.0, FALSE); else if (b->idle && blist_options & OPT_BLIST_GREY_IDLERS) gdk_pixbuf_saturate_and_pixelate(scale, scale, 0.25, FALSE); @@ -924,7 +924,7 @@ if (buf) { - if (!b->present && blist_options & OPT_BLIST_SHOW_OFFLINE) + if (!b->present) gdk_pixbuf_saturate_and_pixelate(buf, buf, 0.0, FALSE); if (b->idle && blist_options & OPT_BLIST_GREY_IDLERS) gdk_pixbuf_saturate_and_pixelate(buf, buf, 0.25, FALSE);