diff options
author | Li Yuan <li.yuan@sun.com> | 2005-08-17 14:35:20 +0800 |
---|---|---|
committer | Li Yuan <liyuan@src.gnome.org> | 2005-08-17 14:35:20 +0800 |
commit | e223c1a234e002bd0b770c3f01b80e90cdc761f8 (patch) | |
tree | 8d35adfc15bd7b03407e7f388ef51939c0ce9b9b /a11y/e-table/gal-a11y-e-table-item.c | |
parent | 65c483fd06354745a0ee96fd0f4d94eb160a87c7 (diff) | |
download | gsoc2013-evolution-e223c1a234e002bd0b770c3f01b80e90cdc761f8.tar.gz gsoc2013-evolution-e223c1a234e002bd0b770c3f01b80e90cdc761f8.tar.zst gsoc2013-evolution-e223c1a234e002bd0b770c3f01b80e90cdc761f8.zip |
Fixes #313514. For the code change in gnopernicus, we should use
2005-08-15 Li Yuan <li.yuan@sun.com>
* e-table/gal-a11y-e-table-item.c: (eti_a11y_reset_focus_object):
Fixes #313514.
For the code change in gnopernicus, we should use
atk_focus_tracker_notify here.
svn path=/trunk/; revision=30140
Diffstat (limited to 'a11y/e-table/gal-a11y-e-table-item.c')
-rw-r--r-- | a11y/e-table/gal-a11y-e-table-item.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/a11y/e-table/gal-a11y-e-table-item.c b/a11y/e-table/gal-a11y-e-table-item.c index 7f2ceb0190..2f2d72d4eb 100644 --- a/a11y/e-table/gal-a11y-e-table-item.c +++ b/a11y/e-table/gal-a11y-e-table-item.c @@ -176,10 +176,8 @@ eti_a11y_reset_focus_object (GalA11yETableItem *a11y, ETableItem *item, gboolean } else g_object_set_data (G_OBJECT (a11y), "gail-focus-object", NULL); - if (notify) - g_signal_emit_by_name (a11y, - "active-descendant-changed", - cell); + if (notify && cell) + atk_focus_tracker_notify (cell); } static void |