diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-12-12 10:47:42 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-12-12 10:47:42 +0800 |
commit | ea469b6fc7fa5a173149a5c0d2725fb3d0aa48b2 (patch) | |
tree | 4fc6de816c29598cef346e569e23256aab480fb9 /widgets | |
parent | 384c7dadf8046ecf660eb0ead9b684de17d85a44 (diff) | |
download | gsoc2013-evolution-ea469b6fc7fa5a173149a5c0d2725fb3d0aa48b2.tar gsoc2013-evolution-ea469b6fc7fa5a173149a5c0d2725fb3d0aa48b2.tar.gz gsoc2013-evolution-ea469b6fc7fa5a173149a5c0d2725fb3d0aa48b2.tar.bz2 gsoc2013-evolution-ea469b6fc7fa5a173149a5c0d2725fb3d0aa48b2.tar.lz gsoc2013-evolution-ea469b6fc7fa5a173149a5c0d2725fb3d0aa48b2.tar.xz gsoc2013-evolution-ea469b6fc7fa5a173149a5c0d2725fb3d0aa48b2.tar.zst gsoc2013-evolution-ea469b6fc7fa5a173149a5c0d2725fb3d0aa48b2.zip |
Made selected rows ignore their color specification.
2000-12-11 Christopher James Lahey <clahey@helixcode.com>
* e-cell-text.c (ect_draw): Made selected rows ignore their color
specification.
svn path=/trunk/; revision=6935
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/table/e-cell-text.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/table/e-cell-text.c b/widgets/table/e-cell-text.c index 30899383f3..83da75a530 100644 --- a/widgets/table/e-cell-text.c +++ b/widgets/table/e-cell-text.c @@ -483,7 +483,7 @@ ect_draw (ECellView *ecell_view, GdkDrawable *drawable, cursor_color = foreground; - if (ect->color_column != -1) { + if (ect->color_column != -1 && ! selected) { color_spec = e_table_model_value_at (ecell_view->e_table_model, ect->color_column, row); cell_foreground = e_cell_text_get_color (text_view, |