You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.1 KiB
33 lines
1.1 KiB
From 3e3634b59455da0cbae1de4af0ce5cf97be8b80d Mon Sep 17 00:00:00 2001
|
|
From: Ray Strode <rstrode@redhat.com>
|
|
Date: Tue, 21 Jan 2014 16:48:17 -0500
|
|
Subject: [PATCH] apps-menu: add logo icon to Applications menu
|
|
|
|
Brand requested it.
|
|
---
|
|
extensions/apps-menu/extension.js | 8 ++++++++
|
|
1 file changed, 8 insertions(+)
|
|
|
|
diff --git a/extensions/apps-menu/extension.js b/extensions/apps-menu/extension.js
|
|
index d7ba570..d62e3d7 100644
|
|
--- a/extensions/apps-menu/extension.js
|
|
+++ b/extensions/apps-menu/extension.js
|
|
@@ -390,6 +390,14 @@ class ApplicationsButton extends PanelMenu.Button {
|
|
|
|
let hbox = new St.BoxLayout({ style_class: 'panel-status-menu-box' });
|
|
|
|
+ let iconFile = Gio.File.new_for_path(
|
|
+ '/usr/share/icons/hicolor/scalable/apps/start-here.svg');
|
|
+ this._icon = new St.Icon({
|
|
+ gicon: new Gio.FileIcon({ file: iconFile }),
|
|
+ style_class: 'panel-logo-icon'
|
|
+ });
|
|
+ hbox.add_actor(this._icon);
|
|
+
|
|
this._label = new St.Label({
|
|
text: _('Applications'),
|
|
y_expand: true,
|
|
--
|
|
2.21.0
|
|
|