[gnome-control-center/gnome-3-12] network: Fix network icon names for newer versions
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-control-center/gnome-3-12] network: Fix network icon names for newer versions
- Date: Thu, 24 Jul 2014 11:10:37 +0000 (UTC)
commit f03953867c210eabe61cb9e0dfa89bee3d4f83e9
Author: Bastien Nocera <hadess hadess net>
Date: Thu Jul 24 12:57:17 2014 +0200
network: Fix network icon names for newer versions
network-wireless-signal-excellent and network-cellular-signal-excellent
don't exist in non-symbolic variants anymore, so use the fallback
names instead.
https://bugzilla.gnome.org/show_bug.cgi?id=695480
panels/network/panel-common.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/panels/network/panel-common.c b/panels/network/panel-common.c
index 48fc9f0..9e84c60 100644
--- a/panels/network/panel-common.c
+++ b/panels/network/panel-common.c
@@ -57,14 +57,14 @@ panel_device_to_icon_name (NMDevice *device, gboolean symbolic)
case NM_DEVICE_TYPE_BT:
case NM_DEVICE_TYPE_OLPC_MESH:
value = symbolic ? "network-wireless-signal-excellent-symbolic"
- : "network-wireless-signal-excellent";
+ : "network-wireless";
break;
case NM_DEVICE_TYPE_MODEM:
caps = nm_device_modem_get_current_capabilities (NM_DEVICE_MODEM (device));
if ((caps & NM_DEVICE_MODEM_CAPABILITY_GSM_UMTS) ||
(caps & NM_DEVICE_MODEM_CAPABILITY_CDMA_EVDO)) {
value = symbolic ? "network-cellular-signal-excellent-symbolic"
- : "network-cellular-signal-excellent";
+ : "network-cellular";
break;
}
/* fall thru */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]