From d4e75ae9ca767eac3dea028e1f298e3de360d76c Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Tue, 4 May 2021 08:32:57 +0200 Subject: Revert "Fix percentage for mice and keyboards" This reverts commit f94ffac7f36831dd8a79f30d5b94de9758fcd3a6. The original commit entirely broke unit tests. Next revision should adjust unit tests (or not break them). --- src/device.c | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) (limited to 'src/device.c') 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); -- cgit v1.2.3