[gnome-shell] ctrl-alt-tab: use better icons



commit 5e3111bad81e399e553dfb7ce7b814ba05e760bd
Author: StÃphane DÃmurget <stephane demurget free fr>
Date:   Tue Nov 20 11:51:56 2012 +0100

    ctrl-alt-tab: use better icons
    
    The top panel and message tray icons were by default a gnome foot and
    are replaced by better ones. The applications icon is now using the
    symbolic apps icon of the dash, and the windows icon is also improved.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=641303

 js/ui/messageTray.js  |    2 +-
 js/ui/panel.js        |    2 +-
 js/ui/viewSelector.js |    4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js
index 12895f9..fa1ea31 100644
--- a/js/ui/messageTray.js
+++ b/js/ui/messageTray.js
@@ -1565,7 +1565,7 @@ const MessageTray = new Lang.Class({
         if (Main.sessionMode.isLocked || Main.sessionMode.isGreeter)
             Main.ctrlAltTabManager.removeGroup(this._summary);
         else
-            Main.ctrlAltTabManager.addGroup(this._summary, _("Message Tray"), 'start-here-symbolic',
+            Main.ctrlAltTabManager.addGroup(this._summary, _("Message Tray"), 'user-available-symbolic',
                                             { focusCallback: Lang.bind(this, this.toggleAndNavigate),
                                               sortGroup: CtrlAltTab.SortGroup.BOTTOM });
         this._updateState();
diff --git a/js/ui/panel.js b/js/ui/panel.js
index 15a5db2..ba02a49 100644
--- a/js/ui/panel.js
+++ b/js/ui/panel.js
@@ -995,7 +995,7 @@ const Panel = new Lang.Class({
         this.actor.connect('button-press-event', Lang.bind(this, this._onButtonPress));
 
         Main.layoutManager.panelBox.add(this.actor);
-        Main.ctrlAltTabManager.addGroup(this.actor, _("Top Bar"), 'start-here-symbolic',
+        Main.ctrlAltTabManager.addGroup(this.actor, _("Top Bar"), 'emblem-system-symbolic',
                                         { sortGroup: CtrlAltTab.SortGroup.TOP });
 
         Main.sessionMode.connect('updated', Lang.bind(this, this._updatePanel));
diff --git a/js/ui/viewSelector.js b/js/ui/viewSelector.js
index d9cf053..9c73e8e 100644
--- a/js/ui/viewSelector.js
+++ b/js/ui/viewSelector.js
@@ -84,11 +84,11 @@ const ViewSelector = new Lang.Class({
 
         this._workspacesDisplay = new WorkspacesView.WorkspacesDisplay();
         this._workspacesPage = this._addPage(this._workspacesDisplay.actor, null,
-                                             _("Windows"), 'text-x-generic-symbolic');
+                                             _("Windows"), 'emblem-documents-symbolic');
 
         this._appDisplay = new AppDisplay.AllAppDisplay();
         this._appsPage = this._addPage(this._appDisplay.actor, null,
-                                       _("Applications"), 'system-run-symbolic');
+                                       _("Applications"), 'view-grid-symbolic');
 
         this._searchResults = new SearchDisplay.SearchResults(this._searchSystem);
         this._searchPage = this._addPage(this._searchResults.actor, this._entry,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]