diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-07-14 03:23:22 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-07-14 03:23:22 +0800 |
commit | 1be3f59a27145521b6b4c1a8af48ab9421df33b2 (patch) | |
tree | 89157e5b6321aae30076793ff7045b4cd62697b8 /widgets/e-table | |
parent | a5fc85f2f49c04d8b0344c8e967c2bf18856a46a (diff) | |
download | gsoc2013-evolution-1be3f59a27145521b6b4c1a8af48ab9421df33b2.tar gsoc2013-evolution-1be3f59a27145521b6b4c1a8af48ab9421df33b2.tar.gz gsoc2013-evolution-1be3f59a27145521b6b4c1a8af48ab9421df33b2.tar.bz2 gsoc2013-evolution-1be3f59a27145521b6b4c1a8af48ab9421df33b2.tar.lz gsoc2013-evolution-1be3f59a27145521b6b4c1a8af48ab9421df33b2.tar.xz gsoc2013-evolution-1be3f59a27145521b6b4c1a8af48ab9421df33b2.tar.zst gsoc2013-evolution-1be3f59a27145521b6b4c1a8af48ab9421df33b2.zip |
Changed the background color of the header.
2000-07-13 Christopher James Lahey <clahey@helixcode.com>
* e-table-header-item.c: Changed the background color of the
header.
svn path=/trunk/; revision=4152
Diffstat (limited to 'widgets/e-table')
-rw-r--r-- | widgets/e-table/ChangeLog | 5 | ||||
-rw-r--r-- | widgets/e-table/e-table-header-item.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/widgets/e-table/ChangeLog b/widgets/e-table/ChangeLog index d95beb3ea0..4c58c51796 100644 --- a/widgets/e-table/ChangeLog +++ b/widgets/e-table/ChangeLog @@ -1,3 +1,8 @@ +2000-07-13 Christopher James Lahey <clahey@helixcode.com> + + * e-table-header-item.c: Changed the background color of the + header. + 2000-07-12 Christopher James Lahey <clahey@helixcode.com> * e-table-header-item.c: Made scroll wheel work properly in diff --git a/widgets/e-table/e-table-header-item.c b/widgets/e-table/e-table-header-item.c index ebe2c6434e..173256c8bd 100644 --- a/widgets/e-table/e-table-header-item.c +++ b/widgets/e-table/e-table-header-item.c @@ -821,7 +821,7 @@ ethi_draw (GnomeCanvasItem *item, GdkDrawable *drawable, int x, int y, int width if (x2 < x) continue; - gc = GTK_WIDGET (canvas)->style->bg_gc [GTK_STATE_ACTIVE]; + gc = GTK_WIDGET (canvas)->style->bg_gc [GTK_STATE_NORMAL]; draw_button (ethi, ecol, drawable, gc, GTK_WIDGET (canvas)->style, |