aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-item.c
diff options
context:
space:
mode:
authorMike Kestner <mkestner@ximian.com>2003-06-14 06:27:03 +0800
committerMike Kestner <mkestner@src.gnome.org>2003-06-14 06:27:03 +0800
commit996f1063f9f978ae36a8b9799e22748f907ed819 (patch)
treee879cb22aa7e133a9223681dfb0880aecd875348 /widgets/table/e-table-item.c
parent5b69d6b3d53fc8edf1456c2c9bcc1a579ae4b880 (diff)
downloadgsoc2013-evolution-996f1063f9f978ae36a8b9799e22748f907ed819.tar
gsoc2013-evolution-996f1063f9f978ae36a8b9799e22748f907ed819.tar.gz
gsoc2013-evolution-996f1063f9f978ae36a8b9799e22748f907ed819.tar.bz2
gsoc2013-evolution-996f1063f9f978ae36a8b9799e22748f907ed819.tar.lz
gsoc2013-evolution-996f1063f9f978ae36a8b9799e22748f907ed819.tar.xz
gsoc2013-evolution-996f1063f9f978ae36a8b9799e22748f907ed819.tar.zst
gsoc2013-evolution-996f1063f9f978ae36a8b9799e22748f907ed819.zip
don't do the CURSOR_FIRST checks if cursor is NULL [43523]
2003-06-13 Mike Kestner <mkestner@ximian.com> * e-tree.c (et_search_search): don't do the CURSOR_FIRST checks if cursor is NULL [43523] 2003-06-13 Mike Kestner <mkestner@ximian.com> * e-table-item.c (eti_get_cell_background_color): update to an alt row color more consistent with gtktreeview. [44610] svn path=/trunk/; revision=21440
Diffstat (limited to 'widgets/table/e-table-item.c')
-rw-r--r--widgets/table/e-table-item.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/table/e-table-item.c b/widgets/table/e-table-item.c
index bd6a8f3f67..b125c8495d 100644
--- a/widgets/table/e-table-item.c
+++ b/widgets/table/e-table-item.c
@@ -271,7 +271,7 @@ eti_get_cell_background_color (ETableItem *eti, int row, int col, gboolean selec
background = gdk_color_copy (background);
allocated = TRUE;
}
- e_hsv_tweak (background, 0.0f, 0.0f, -0.05f);
+ e_hsv_tweak (background, 0.0f, 0.0f, -0.07f);
gdk_color_alloc (gtk_widget_get_colormap (GTK_WIDGET (canvas)), background);
}
}