aboutsummaryrefslogtreecommitdiff
path: root/src/device.c
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2013-10-01 09:05:32 -0500
committerCharles Kerr <charles.kerr@canonical.com>2013-10-01 09:05:32 -0500
commit3fe1d262f1947ca126a85bdc165a14ee6f26cc4a (patch)
tree1ede8d8bdfeca31972ede815722eda668d424e63 /src/device.c
parent6c04d1a5a97304fc42e4343a9b38a98e03a81008 (diff)
downloadayatana-indicator-power-3fe1d262f1947ca126a85bdc165a14ee6f26cc4a.tar.gz
ayatana-indicator-power-3fe1d262f1947ca126a85bdc165a14ee6f26cc4a.tar.bz2
ayatana-indicator-power-3fe1d262f1947ca126a85bdc165a14ee6f26cc4a.zip
use the correct battery icon when charging/discharging
Diffstat (limited to 'src/device.c')
-rw-r--r--src/device.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/device.c b/src/device.c
index 9dc4647..508a734 100644
--- a/src/device.c
+++ b/src/device.c
@@ -328,10 +328,7 @@ device_kind_to_string (UpDeviceKind kind)
This function's logic differs from GSD's power plugin in some ways:
- 1. All charging batteries use the same icon regardless of progress.
- <https://bugs.launchpad.net/indicator-power/+bug/824629/comments/7>
-
- 2. For discharging batteries, we decide whether or not to use the 'caution'
+ 1. For discharging batteries, we decide whether or not to use the 'caution'
icon based on whether or not we have <= 30 minutes remaining, rather than
looking at the battery's percentage left.
<https://bugs.launchpad.net/indicator-power/+bug/743823>
@@ -389,10 +386,6 @@ indicator_power_device_get_icon_names (const IndicatorPowerDevice * device)
case UP_DEVICE_STATE_CHARGING:
case UP_DEVICE_STATE_PENDING_CHARGE:
- /* When charging, always use the same icon regardless of percentage.
- <http://bugs.launchpad.net/indicator-power/+bug/824629> */
- percentage = 0;
-
suffix_str = get_device_icon_suffix (percentage);
index_str = get_device_icon_index (percentage);
g_ptr_array_add (names, g_strdup_printf ("%s-%s-charging-symbolic", kind_str, suffix_str));