apps-menu: Remove excess argument

This was an oversight in commit 63653406a3 when porting from a
removed Popover API to ClutterActor.add_child().

https://bugzilla.gnome.org/show_bug.cgi?id=787294
This commit is contained in:
Alexander Rüedlinger
2017-09-05 07:51:23 +02:00
committed by Florian Müllner
parent cccef0e857
commit 37b95a8498
+1 -1
View File
@@ -62,7 +62,7 @@ const ApplicationMenuItem = new Lang.Class({
let appLabel = new St.Label({ text: app.get_name(), y_expand: true,
y_align: Clutter.ActorAlign.CENTER });
this.actor.add_child(appLabel, { expand: true });
this.actor.add_child(appLabel);
this.actor.label_actor = appLabel;
let textureCache = St.TextureCache.get_default();