[gnome-shell/add-child-fix: 22/22] popupMenu: Fix wrong call to clutter_actor_add_child()



commit cdbc99e992442b6e0c8b5910d38e606d67be6560
Author: Mario Sanchez Prada <mario endlessm com>
Date:   Mon Apr 16 11:47:57 2018 +0100

    popupMenu: Fix wrong call to clutter_actor_add_child()
    
    Specify the horizontal alignment via the x_align property when creating
    the StIcon, since this function expects one argument, not two.

 js/ui/popupMenu.js | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/js/ui/popupMenu.js b/js/ui/popupMenu.js
index 67b928c69..83194d72b 100644
--- a/js/ui/popupMenu.js
+++ b/js/ui/popupMenu.js
@@ -394,8 +394,9 @@ var PopupImageMenuItem = new Lang.Class({
     _init(text, icon, params) {
         this.parent(params);
 
-        this._icon = new St.Icon({ style_class: 'popup-menu-icon' });
-        this.actor.add_child(this._icon, { align: St.Align.END });
+        this._icon = new St.Icon({ style_class: 'popup-menu-icon',
+                                   x_align: Clutter.ActorAlign.END });
+        this.actor.add_child(this._icon);
         this.label = new St.Label({ text: text });
         this.actor.add_child(this.label);
         this.actor.label_actor = this.label;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]