aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2002-02-14 06:26:40 +0800
committerChris Lahey <clahey@src.gnome.org>2002-02-14 06:26:40 +0800
commit650dfce65f38f23279085082a293f97c28469f3d (patch)
treeb219079c116233aa2bdb141f157cea6af0c2d50a
parente9d9fd59d3189dfc52d9539140742c0c9ef51924 (diff)
downloadgsoc2013-evolution-650dfce65f38f23279085082a293f97c28469f3d.tar
gsoc2013-evolution-650dfce65f38f23279085082a293f97c28469f3d.tar.gz
gsoc2013-evolution-650dfce65f38f23279085082a293f97c28469f3d.tar.bz2
gsoc2013-evolution-650dfce65f38f23279085082a293f97c28469f3d.tar.lz
gsoc2013-evolution-650dfce65f38f23279085082a293f97c28469f3d.tar.xz
gsoc2013-evolution-650dfce65f38f23279085082a293f97c28469f3d.tar.zst
gsoc2013-evolution-650dfce65f38f23279085082a293f97c28469f3d.zip
Make the defalut for tooltips be on.
2002-02-13 Christopher James Lahey <clahey@ximian.com> * e-table-item.c (eti_event): Make the defalut for tooltips be on. svn path=/trunk/; revision=15719
-rw-r--r--widgets/table/e-table-item.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/widgets/table/e-table-item.c b/widgets/table/e-table-item.c
index d835ae6d11..ae249f639b 100644
--- a/widgets/table/e-table-item.c
+++ b/widgets/table/e-table-item.c
@@ -2225,7 +2225,6 @@ eti_event (GnomeCanvasItem *item, GdkEvent *e)
if (return_val)
return TRUE;
- return_val = FALSE;
gtk_signal_emit (GTK_OBJECT (eti), eti_signals [CLICK],
row, view_to_model_col(eti, col), &button, &return_val);
@@ -2486,7 +2485,7 @@ eti_event (GnomeCanvasItem *item, GdkEvent *e)
e_canvas_hide_tooltip (E_CANVAS(GNOME_CANVAS_ITEM(eti)->canvas));
#ifdef DO_TOOLTIPS
- if (g_getenv ("GAL_DO_TOOLTIPS")) {
+ if (!g_getenv ("GAL_DONT_DO_TOOLTIPS")) {
if (eti->tooltip->timer > 0)
gtk_timeout_remove (eti->tooltip->timer);
eti->tooltip->col = col;