diff options
-rw-r--r-- | battstat/battstat_applet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/battstat/battstat_applet.c b/battstat/battstat_applet.c index 6b049458..6a452433 100644 --- a/battstat/battstat_applet.c +++ b/battstat/battstat_applet.c @@ -854,9 +854,9 @@ update_percent_label( ProgressData *battstat, BatteryStatus *info ) new_label = g_strdup_printf ("%d%%", info->percent); else if (info->present && battstat->showtext == APPLET_SHOW_TIME) { - /* Fully charged or unknown (-1) time remaining displays -:-- */ + /* Fully charged or unknown (-1) time remaining display none */ if ((info->on_ac_power && info->percent == 100) || info->minutes < 0) - new_label = g_strdup ("-:--"); + new_label = g_strdup (""); else { int time; |