Author: sragavan
Date: Mon Jan 28 07:59:58 2008
New Revision: 34914
URL: http://svn.gnome.org/viewvc/evolution?rev=34914&view=rev
Log:
2008-01-28 Srinivasa Ragavan <[EMAIL PROTECTED]>
* e-table-item.c: (eti_draw): Fix some gradient issues.
Modified:
trunk/widgets/table/ChangeLog
trunk/widgets/table/e-table-item.c
Modified: trunk/widgets/table/e-table-item.c
==============================================================================
--- trunk/widgets/table/e-table-item.c (original)
+++ trunk/widgets/table/e-table-item.c Mon Jan 28 07:59:58 2008
@@ -1985,10 +1985,10 @@
cairo_pattern_add_color_stop_rgba (pat, 0.0,
background->red/65535.0 ,
background->green/65535.0,
background->blue/65535.0, selected ? 0.8: 1.0);
-
- cairo_pattern_add_color_stop_rgba (pat, 0.5,
background->red/65535.0 ,
-
background->green/65535.0,
-
background->blue/65535.0, 0.9);
+ if (selected)
+ cairo_pattern_add_color_stop_rgba (pat, 0.5,
background->red/65535.0 ,
+
background->green/65535.0,
+
background->blue/65535.0, 0.9);
cairo_pattern_add_color_stop_rgba (pat, 1,
background->red/65535.0 ,
background->green/65535.0,
_______________________________________________
SVN-commits-list mailing list (read only)
http://mail.gnome.org/mailman/listinfo/svn-commits-list
Want to limit the commits to a few modules? Go to above URL, log in to edit
your options and select the modules ('topics') you want.
Module maintainer? It is possible to set the reply-to to your development
mailing list. Email [EMAIL PROTECTED] if interested.