From 58ff5c6cc62ff01de5e246b8f0be9b1abb145181 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Pi=C3=B1eiro?= Date: Wed, 6 Jun 2012 11:36:28 +0200 Subject: [PATCH] a11y: setting label actor for endSessionDialog.ListItem https://bugzilla.gnome.org/show_bug.cgi?id=677503 --- js/ui/endSessionDialog.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/endSessionDialog.js b/js/ui/endSessionDialog.js index 28f4a44ce..d9f98933e 100644 --- a/js/ui/endSessionDialog.js +++ b/js/ui/endSessionDialog.js @@ -160,6 +160,7 @@ const ListItem = new Lang.Class({ this._descriptionLabel = new St.Label({ text: this._reason, style_class: 'end-session-dialog-app-list-item-description' }); + this.actor.label_actor = this._nameLabel; textLayout.add(this._descriptionLabel, { expand: true, x_fill: true });