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.
This commit is contained in:
Mario Sanchez Prada 2018-04-16 11:47:57 +01:00 committed by Florian Müllner
parent 69afe7785d
commit cdbc99e992

View File

@ -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;