[gnome-shell] Fix some more icon names
- From: Giovanni Campagna <gcampagna src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] Fix some more icon names
- Date: Fri, 31 Aug 2012 21:31:51 +0000 (UTC)
commit a3d8b5e5264e795460aeca438b5ad0474ceac549
Author: Giovanni Campagna <gcampagna src gnome org>
Date: Fri Aug 31 23:25:26 2012 +0200
Fix some more icon names
Message tray sources should never have symbolic icons.
The VPN secondary icon in the panel instead should.
js/ui/status/bluetooth.js | 2 +-
js/ui/status/network.js | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/js/ui/status/bluetooth.js b/js/ui/status/bluetooth.js
index 5086d77..5a2609c 100644
--- a/js/ui/status/bluetooth.js
+++ b/js/ui/status/bluetooth.js
@@ -306,7 +306,7 @@ const Indicator = new Lang.Class({
_ensureSource: function() {
if (!this._source) {
- this._source = new MessageTray.Source(_("Bluetooth"), 'bluetooth-active-symbolic');
+ this._source = new MessageTray.Source(_("Bluetooth"), 'bluetooth-active');
Main.messageTray.add(this._source);
}
},
diff --git a/js/ui/status/network.js b/js/ui/status/network.js
index 05a5aae..23f6207 100644
--- a/js/ui/status/network.js
+++ b/js/ui/status/network.js
@@ -1683,7 +1683,7 @@ const NMApplet = new Lang.Class({
_ensureSource: function() {
if (!this._source) {
this._source = new MessageTray.Source(_("Network Manager"),
- 'network-transmit-receive-symbolic');
+ 'network-transmit-receive');
this._source.connect('destroy', Lang.bind(this, function() {
this._source = null;
@@ -2170,7 +2170,7 @@ const NMApplet = new Lang.Class({
if (this._vpnConnection) {
let vpnIconName = 'network-vpn-symbolic';
if (this._vpnConnection.state == NetworkManager.ActiveConnectionState.ACTIVATING)
- vpnIconName = 'network-vpn-acquiring';
+ vpnIconName = 'network-vpn-acquiring-symbolic';
// only show a separate icon when we're using a wireless/3g connection
if (mc._section == NMConnectionCategory.WIRELESS ||
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]