aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-12-14 09:54:37 +0800
committerChris Lahey <clahey@src.gnome.org>2000-12-14 09:54:37 +0800
commitd8619d03cd67fbc6ae6539f9beb1a593c4656c2b (patch)
tree74201481f862f62ee19a3b4cc72c60bd4b3818f8 /widgets/table
parent53fc209818d527424c56bbdb46130490ba3ef4b1 (diff)
downloadgsoc2013-evolution-d8619d03cd67fbc6ae6539f9beb1a593c4656c2b.tar
gsoc2013-evolution-d8619d03cd67fbc6ae6539f9beb1a593c4656c2b.tar.gz
gsoc2013-evolution-d8619d03cd67fbc6ae6539f9beb1a593c4656c2b.tar.bz2
gsoc2013-evolution-d8619d03cd67fbc6ae6539f9beb1a593c4656c2b.tar.lz
gsoc2013-evolution-d8619d03cd67fbc6ae6539f9beb1a593c4656c2b.tar.xz
gsoc2013-evolution-d8619d03cd67fbc6ae6539f9beb1a593c4656c2b.tar.zst
gsoc2013-evolution-d8619d03cd67fbc6ae6539f9beb1a593c4656c2b.zip
Changed the background color of the tooltips to light gray.
2000-12-13 Christopher James Lahey <clahey@helixcode.com> * e-cell-text.c (ect_show_tooltip): Changed the background color of the tooltips to light gray. * e-table-item.c (eti_event): Changed the tooltip timeout to 100 milliseconds. svn path=/trunk/; revision=6988
Diffstat (limited to 'widgets/table')
-rw-r--r--widgets/table/e-cell-text.c2
-rw-r--r--widgets/table/e-table-item.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/widgets/table/e-cell-text.c b/widgets/table/e-cell-text.c
index 83da75a530..f2b9a22890 100644
--- a/widgets/table/e-cell-text.c
+++ b/widgets/table/e-cell-text.c
@@ -1425,7 +1425,7 @@ ect_show_tooltip (ECellView *ecell_view,
"y1", (double) 0.0,
"x2", (double) max_width + 4,
"y2", (double) text_height,
- "fill_color", "yellow",
+ "fill_color", "light gray",
NULL);
tooltip_text = gnome_canvas_item_new (gnome_canvas_root (GNOME_CANVAS (canvas)),
diff --git a/widgets/table/e-table-item.c b/widgets/table/e-table-item.c
index 3d793a2f07..43dbb92b00 100644
--- a/widgets/table/e-table-item.c
+++ b/widgets/table/e-table-item.c
@@ -1708,7 +1708,7 @@ eti_event (GnomeCanvasItem *item, GdkEvent *e)
eti->tooltip->row = row;
eti->tooltip->cx = e->motion.x;
eti->tooltip->cy = e->motion.y;
- eti->tooltip->timer = gtk_timeout_add (1000, (GSourceFunc)_do_tooltip, eti);
+ eti->tooltip->timer = gtk_timeout_add (100, (GSourceFunc)_do_tooltip, eti);
if (cursor_row == view_to_model_row(eti, row) && cursor_col == view_to_model_col(eti, col)){
ecell_view = eti->cell_views [col];