From 1d6f85c8f4e63eae0615c4391b2faed29f91795f Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Tue, 30 Jul 2013 13:20:33 +0200 Subject: [PATCH] apps-menu: update to work with gnome-shell master The span parameter was removed from the PopupMenuItem API. --- extensions/apps-menu/extension.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/apps-menu/extension.js b/extensions/apps-menu/extension.js index a822d446..4ea375e2 100644 --- a/extensions/apps-menu/extension.js +++ b/extensions/apps-menu/extension.js @@ -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();