diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2007-12-29 23:49:18 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-12-29 23:49:18 +0800 |
commit | 9c0af71c275a1e1a1fcbec99b90ab62acfecf67a (patch) | |
tree | d5fd68349187452b1f6cbb334e2c4508108c2a42 | |
parent | 088f53b493845d2baf6df824139ab56c6dec92f6 (diff) | |
download | gsoc2013-empathy-9c0af71c275a1e1a1fcbec99b90ab62acfecf67a.tar gsoc2013-empathy-9c0af71c275a1e1a1fcbec99b90ab62acfecf67a.tar.gz gsoc2013-empathy-9c0af71c275a1e1a1fcbec99b90ab62acfecf67a.tar.bz2 gsoc2013-empathy-9c0af71c275a1e1a1fcbec99b90ab62acfecf67a.tar.lz gsoc2013-empathy-9c0af71c275a1e1a1fcbec99b90ab62acfecf67a.tar.xz gsoc2013-empathy-9c0af71c275a1e1a1fcbec99b90ab62acfecf67a.tar.zst gsoc2013-empathy-9c0af71c275a1e1a1fcbec99b90ab62acfecf67a.zip |
Simplify contact_list_view_cell_set_background()
svn path=/trunk/; revision=506
-rw-r--r-- | libempathy-gtk/empathy-contact-list-view.c | 36 |
1 files changed, 15 insertions, 21 deletions
diff --git a/libempathy-gtk/empathy-contact-list-view.c b/libempathy-gtk/empathy-contact-list-view.c index 73afd299a..9b6a98a6a 100644 --- a/libempathy-gtk/empathy-contact-list-view.c +++ b/libempathy-gtk/empathy-contact-list-view.c @@ -1034,27 +1034,21 @@ contact_list_view_cell_set_background (EmpathyContactListView *view, style = gtk_widget_get_style (GTK_WIDGET (view)); - if (!is_group) { - if (is_active) { - color = style->bg[GTK_STATE_SELECTED]; - - /* Here we take the current theme colour and add it to - * the colour for white and average the two. This - * gives a colour which is inline with the theme but - * slightly whiter. - */ - color.red = (color.red + (style->white).red) / 2; - color.green = (color.green + (style->white).green) / 2; - color.blue = (color.blue + (style->white).blue) / 2; - - g_object_set (cell, - "cell-background-gdk", &color, - NULL); - } else { - g_object_set (cell, - "cell-background-gdk", NULL, - NULL); - } + if (!is_group && is_active) { + color = style->bg[GTK_STATE_SELECTED]; + + /* Here we take the current theme colour and add it to + * the colour for white and average the two. This + * gives a colour which is inline with the theme but + * slightly whiter. + */ + color.red = (color.red + (style->white).red) / 2; + color.green = (color.green + (style->white).green) / 2; + color.blue = (color.blue + (style->white).blue) / 2; + + g_object_set (cell, + "cell-background-gdk", &color, + NULL); } else { g_object_set (cell, "cell-background-gdk", NULL, |