[gnome-shell] Use dedicated icons for top bar/windows in ctrl-alt-tab
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] Use dedicated icons for top bar/windows in ctrl-alt-tab
- Date: Fri, 13 Mar 2015 16:16:47 +0000 (UTC)
commit cb3d5c2b51dc72a0f1bfd9bd8c88caac420a4fd9
Author: Florian Müllner <fmuellner gnome org>
Date: Thu Mar 12 13:40:36 2015 +0100
Use dedicated icons for top bar/windows in ctrl-alt-tab
The previously used ones were quite a stretch, so now that we got
dedicated ones, let's use them.
js/ui/ctrlAltTab.js | 4 ++--
js/ui/panel.js | 2 +-
js/ui/viewSelector.js | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/js/ui/ctrlAltTab.js b/js/ui/ctrlAltTab.js
index 082d329..f847cea 100644
--- a/js/ui/ctrlAltTab.js
+++ b/js/ui/ctrlAltTab.js
@@ -27,8 +27,8 @@ const CtrlAltTabManager = new Lang.Class({
_init: function() {
this._items = [];
this.addGroup(global.window_group, _("Windows"),
- 'emblem-documents-symbolic', { sortGroup: SortGroup.TOP,
- focusCallback: Lang.bind(this, this._focusWindows) });
+ 'focus-windows-symbolic', { sortGroup: SortGroup.TOP,
+ focusCallback: Lang.bind(this, this._focusWindows) });
},
addGroup: function(root, name, icon, params) {
diff --git a/js/ui/panel.js b/js/ui/panel.js
index 2e6ddab..8e7fa3e 100644
--- a/js/ui/panel.js
+++ b/js/ui/panel.js
@@ -752,7 +752,7 @@ const Panel = new Lang.Class({
}));
Main.layoutManager.panelBox.add(this.actor);
- Main.ctrlAltTabManager.addGroup(this.actor, _("Top Bar"), 'emblem-system-symbolic',
+ Main.ctrlAltTabManager.addGroup(this.actor, _("Top Bar"), 'focus-top-bar-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 6856f18..34711fd 100644
--- a/js/ui/viewSelector.js
+++ b/js/ui/viewSelector.js
@@ -152,7 +152,7 @@ const ViewSelector = new Lang.Class({
this._workspacesDisplay = new WorkspacesView.WorkspacesDisplay();
this._workspacesPage = this._addPage(this._workspacesDisplay.actor,
- _("Windows"), 'emblem-documents-symbolic');
+ _("Windows"), 'focus-windows-symbolic');
this.appDisplay = new AppDisplay.AppDisplay();
this._appsPage = this._addPage(this.appDisplay.actor,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]