From 92b7c44e6de33835d68698150f9d78637dfc2441 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 26 Nov 2014 18:50:01 +0100 Subject: [PATCH] apps-menu: Update menu arrow to use an icon gnome-shell no longer uses labels with UTF8 arrows, so the currently used arrow is no longer consistent with other menus; fix that. https://bugzilla.gnome.org/show_bug.cgi?id=740725 --- extensions/apps-menu/extension.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/extensions/apps-menu/extension.js b/extensions/apps-menu/extension.js index 642c73d8..a8fb74d5 100644 --- a/extensions/apps-menu/extension.js +++ b/extensions/apps-menu/extension.js @@ -283,9 +283,7 @@ const ApplicationsButton = new Lang.Class({ y_expand: true, y_align: Clutter.ActorAlign.CENTER }); hbox.add_child(this._label); - hbox.add_child(new St.Label({ text: '\u25BE', - y_expand: true, - y_align: Clutter.ActorAlign.CENTER })); + hbox.add_child(PopupMenu.arrowIcon(St.Side.BOTTOM)); this.actor.add_actor(hbox); this.actor.name = 'panelApplications';