diff options
author | Li Yuan <li.yuan@sun.com> | 2005-04-28 15:24:43 +0800 |
---|---|---|
committer | Harry Lu <haip@src.gnome.org> | 2005-04-28 15:24:43 +0800 |
commit | 1cf6d50548e119712555080316946d74071a5992 (patch) | |
tree | ece3c24e85d80975304963e7f94284d26629e498 | |
parent | 39cf1c100169065c5b45c9a7fbd395cd6cbbf128 (diff) | |
download | gsoc2013-evolution-1cf6d50548e119712555080316946d74071a5992.tar.gz gsoc2013-evolution-1cf6d50548e119712555080316946d74071a5992.tar.zst gsoc2013-evolution-1cf6d50548e119712555080316946d74071a5992.zip |
return FALSE to let GTK run "F6" handler.
2005-04-28 Li Yuan <li.yuan@sun.com>
* gal/a11y/e-table/gal-a11y-e-table-click-to-add.c: (etcta_event):
return FALSE to let GTK run "F6" handler.
Fixes #74181
svn path=/trunk/; revision=29233
-rw-r--r-- | a11y/e-table/gal-a11y-e-table-click-to-add.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/a11y/e-table/gal-a11y-e-table-click-to-add.c b/a11y/e-table/gal-a11y-e-table-click-to-add.c index da4933e647..d8400b7ebb 100644 --- a/a11y/e-table/gal-a11y-e-table-click-to-add.c +++ b/a11y/e-table/gal-a11y-e-table-click-to-add.c @@ -261,7 +261,7 @@ etcta_event (GnomeCanvasItem *item, GdkEvent *e, gpointer data) priv->rect = etcta->rect; priv->row = etcta->row; - return TRUE; + return FALSE; } static void |