~townsend/unity/fix-lp1301394-trusty

« back to all changes in this revision

Viewing changes to plugins/unityshell/src/nux-view-accessible.cpp

  • Committer: CI Train Bot
  • Author(s): Luke Yelavich
  • Date: 2015-03-16 17:30:01 UTC
  • mfrom: (3807.7.3 lp-1066157-trusty)
  • Revision ID: ci-train-bot@canonical.com-20150316173001-wz21omq7ukr75ter
extended accessible exploration of the Dash dynamic content
 Fixes: #1066157
Approved by: Christopher Townsend

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 */
29
29
 
30
30
#include "nux-view-accessible.h"
 
31
#include "unity-util-accessible.h"
31
32
#include "unitya11y.h"
32
33
#include "nux-base-window-accessible.h"
33
34
 
241
242
  atk_child = unity_a11y_get_accessible(layout);
242
243
 
243
244
  if (is_add)
 
245
  {
244
246
    signal_name = "children-changed::add";
 
247
    explore_children(accessible);
 
248
  }
245
249
  else
 
250
  {
246
251
    signal_name = "children-changed::remove";
 
252
  }
247
253
 
248
254
  /* index is always 0 as there is always just one layout */
249
255
  g_signal_emit_by_name(accessible, signal_name, 0, atk_child, NULL);