diff options
author | Li Yuan <li.yuan@sun.com> | 2009-05-04 11:12:06 +0800 |
---|---|---|
committer | Li Yuan <li.yuan@sun.com> | 2009-05-04 11:38:44 +0800 |
commit | 5d617ee80beb126ec1c622dc18cdf64745536467 (patch) | |
tree | a58e4d5973ec9f62ad29ebbc5af6a83efe326f96 /modules | |
parent | 6eb95098b1c43da144ca120191c3489966a54c76 (diff) | |
download | gtk+-5d617ee80beb126ec1c622dc18cdf64745536467.tar.gz |
Emit property-changed:accessible-name for gailcombobox
Fix bug #579741. Emit property-changed:accessible-name when selection
of combobox changed.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/other/gail/gailcombobox.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/other/gail/gailcombobox.c b/modules/other/gail/gailcombobox.c index 82962a53a7..b90e7cc199 100644 --- a/modules/other/gail/gailcombobox.c +++ b/modules/other/gail/gailcombobox.c @@ -138,6 +138,7 @@ gail_combo_box_changed_gtk (GtkWidget *widget) if (gail_combo_box->old_selection != index) { gail_combo_box->old_selection = index; + g_object_notify (G_OBJECT (obj), "accessible-name"); g_signal_emit_by_name (obj, "selection_changed"); } } |