From 565e65690d5ff1e29ef00dcb2d2ede355184d22f Mon Sep 17 00:00:00 2001 From: Chris Toshok Date: Wed, 13 Dec 2000 23:32:24 +0000 Subject: remove the silly logic - we pop up a tooltip regardless of where the mouse 2000-12-13 Chris Toshok * e-cell-tree.c (ect_show_tooltip): remove the silly logic - we pop up a tooltip regardless of where the mouse cursor hovers. just make sure it appears in the right place. (ect_event): reverse the change we make to the event after passing it to our subcell. this fixes the problem of the tree reacting twice to events (once with flags == 0, and once with flags == E_CELL_EDITING). * e-table-item.c (eti_event): destroy the tooltip window on a motion event. this can (and does) happen when we get a tooltip on a tree cell and the cursor isn't over the area where the tooltip pops up. svn path=/trunk/; revision=6979 --- widgets/table/e-table-item.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'widgets/table/e-table-item.c') diff --git a/widgets/table/e-table-item.c b/widgets/table/e-table-item.c index 7eb0b07421..3d793a2f07 100644 --- a/widgets/table/e-table-item.c +++ b/widgets/table/e-table-item.c @@ -1697,6 +1697,11 @@ eti_event (GnomeCanvasItem *item, GdkEvent *e) "cursor_col", &cursor_col, NULL); + if (eti->tooltip->window) { + gtk_widget_destroy (eti->tooltip->window); + eti->tooltip->window = NULL; + } + if (eti->tooltip->timer > 0) gtk_timeout_remove (eti->tooltip->timer); eti->tooltip->col = col; -- cgit v1.2.3