aboutsummaryrefslogtreecommitdiff
path: root/src/device.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/device.c')
-rw-r--r--src/device.c18
1 files changed, 1 insertions, 17 deletions
diff --git a/src/device.c b/src/device.c
index f03d514..d2b9b74 100644
--- a/src/device.c
+++ b/src/device.c
@@ -775,15 +775,6 @@ get_menuitem_text (const IndicatorPowerDevice * device,
time_str = get_expanded_time_remaining (device);
}
- if (p->percentage > 0.01 && time_str != NULL)
- {
- if (g_str_equal(time_str, _("estimating…")) || g_str_equal(time_str, _("unknown")))
- {
- g_free(time_str);
- time_str = NULL;
- }
- }
-
if (time_str && *time_str)
{
/* TRANSLATORS: example: "battery (time remaining)" */
@@ -791,14 +782,7 @@ get_menuitem_text (const IndicatorPowerDevice * device,
}
else
{
- if (p->percentage > 0.01)
- {
- str = g_strdup_printf("%s (%.0lf%%)", kind_str, p->percentage);
- }
- else
- {
- str = g_strdup (kind_str);
- }
+ str = g_strdup (kind_str);
}
g_free (time_str);