apps-menu: update to work with gnome-shell master

The span parameter was removed from the PopupMenuItem API.
This commit is contained in:
Giovanni Campagna
2013-07-30 13:20:33 +02:00
parent fb8ad70db6
commit 1d6f85c8f4

View File

@@ -59,7 +59,7 @@ const ApplicationMenuItem = new Lang.Class({
this.addActor(this._iconBin);
let appLabel = new St.Label({ text: app.get_name() });
this.addActor(appLabel, { span: -1, expand: true });
this.addActor(appLabel, { expand: true });
this.actor.label_actor = appLabel;
let textureCache = St.TextureCache.get_default();