aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-08-03 02:53:37 +0800
committerChris Lahey <clahey@src.gnome.org>2001-08-03 02:53:37 +0800
commitb6878cb8d3d11eedee0597301672b61f94355210 (patch)
tree62f42c0adf62b5cf8c9f7cc83387210db2e6b7e1
parente60ee74985082c8cd101d75483022b4513036fb3 (diff)
downloadgsoc2013-evolution-b6878cb8d3d11eedee0597301672b61f94355210.tar
gsoc2013-evolution-b6878cb8d3d11eedee0597301672b61f94355210.tar.gz
gsoc2013-evolution-b6878cb8d3d11eedee0597301672b61f94355210.tar.bz2
gsoc2013-evolution-b6878cb8d3d11eedee0597301672b61f94355210.tar.lz
gsoc2013-evolution-b6878cb8d3d11eedee0597301672b61f94355210.tar.xz
gsoc2013-evolution-b6878cb8d3d11eedee0597301672b61f94355210.tar.zst
gsoc2013-evolution-b6878cb8d3d11eedee0597301672b61f94355210.zip
Make the right and left key presses be marked as handled here (i.e.,
2001-08-02 Christopher James Lahey <clahey@ximian.com> * e-table-item.c (eti_event): Make the right and left key presses be marked as handled here (i.e., return 1 always.) Fixes Ximian bug #2090. svn path=/trunk/; revision=11592
-rw-r--r--widgets/table/e-table-item.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/widgets/table/e-table-item.c b/widgets/table/e-table-item.c
index d09465e68f..bd6863fbbf 100644
--- a/widgets/table/e-table-item.c
+++ b/widgets/table/e-table-item.c
@@ -1967,6 +1967,7 @@ eti_event (GnomeCanvasItem *item, GdkEvent *e)
model_to_view_row(eti, cursor_row), cursor_col, e, &return_val);
if ((!return_val) && eti->cursor_mode != E_CURSOR_LINE && cursor_col != view_to_model_col(eti, 0))
eti_cursor_move_left (eti);
+ return_val = 1;
break;
case GDK_Right:
@@ -1980,6 +1981,7 @@ eti_event (GnomeCanvasItem *item, GdkEvent *e)
model_to_view_row(eti, cursor_row), cursor_col, e, &return_val);
if ((!return_val) && eti->cursor_mode != E_CURSOR_LINE && cursor_col != view_to_model_col(eti, eti->cols - 1))
eti_cursor_move_right (eti);
+ return_val = 1;
break;
case GDK_Up: