Blame SOURCES/0001-apps-menu-add-logo-icon-to-Applications-menu.patch

f59d24
From fe6695b8d45fe7d1d9aea8c41c9aa54048a9704d Mon Sep 17 00:00:00 2001
3614ae
From: Ray Strode <rstrode@redhat.com>
3614ae
Date: Tue, 21 Jan 2014 16:48:17 -0500
3614ae
Subject: [PATCH] apps-menu: add logo icon to Applications menu
3614ae
3614ae
Brand requested it.
3614ae
---
f59d24
 extensions/apps-menu/extension.js | 5 +++++
f59d24
 1 file changed, 5 insertions(+)
3614ae
3614ae
diff --git a/extensions/apps-menu/extension.js b/extensions/apps-menu/extension.js
f59d24
index 2f4002a..41d1faf 100644
3614ae
--- a/extensions/apps-menu/extension.js
3614ae
+++ b/extensions/apps-menu/extension.js
f59d24
@@ -433,6 +433,11 @@ const ApplicationsButton = new Lang.Class({
3614ae
 
e1cefa
         let hbox = new St.BoxLayout({ style_class: 'panel-status-menu-box' });
3614ae
 
3614ae
+        let iconFile = Gio.File.new_for_path('/usr/share/icons/hicolor/scalable/apps/start-here.svg');
3614ae
+        this._icon = new St.Icon({ gicon: new Gio.FileIcon({ file: iconFile }),
3614ae
+                                   style_class: 'panel-logo-icon' });
e1cefa
+        hbox.add_actor(this._icon);
3614ae
+
e1cefa
         this._label = new St.Label({ text: _("Applications"),
e1cefa
                                      y_expand: true,
e1cefa
                                      y_align: Clutter.ActorAlign.CENTER });
3614ae
-- 
f59d24
2.14.2
3614ae