aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Kestner <mkestner@ximian.com>2002-09-11 06:35:19 +0800
committerMike Kestner <mkestner@src.gnome.org>2002-09-11 06:35:19 +0800
commit4081a13ff156379ad380e0456881f707f1e67831 (patch)
tree2f64260647d85e3f28adad7fa9ebb5b3140a8b31
parent75e84ec74f0eaf6ffd7d865478e170f084f2ff63 (diff)
downloadgsoc2013-evolution-4081a13ff156379ad380e0456881f707f1e67831.tar
gsoc2013-evolution-4081a13ff156379ad380e0456881f707f1e67831.tar.gz
gsoc2013-evolution-4081a13ff156379ad380e0456881f707f1e67831.tar.bz2
gsoc2013-evolution-4081a13ff156379ad380e0456881f707f1e67831.tar.lz
gsoc2013-evolution-4081a13ff156379ad380e0456881f707f1e67831.tar.xz
gsoc2013-evolution-4081a13ff156379ad380e0456881f707f1e67831.tar.zst
gsoc2013-evolution-4081a13ff156379ad380e0456881f707f1e67831.zip
forgot to commit the po stuff from the release. also bumped the so number.
forgot to commit the po stuff from the release. also bumped the so number. 2002-09-10 Mike Kestner <mkestner@ximian.com> * gal/e-table/e-table-item.c (eti_event): allow keypress handling for cursor_col==-1 as long as cursor_row isn't -1 also so that e-tree searching works without click focusing an item. svn path=/trunk/; revision=18038
-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 a6697544fa..ef8d903120 100644
--- a/widgets/table/e-table-item.c
+++ b/widgets/table/e-table-item.c
@@ -2560,7 +2560,7 @@ eti_event (GnomeCanvasItem *item, GdkEvent *e)
}
e_canvas_hide_tooltip (E_CANVAS(GNOME_CANVAS_ITEM(eti)->canvas));
- if (cursor_col == -1)
+ if (cursor_row == -1 && cursor_col == -1)
return FALSE;
eti->in_key_press = TRUE;