summaryrefslogtreecommitdiffstats
path: root/healthd
diff options
context:
space:
mode:
authorDamien Bargiacchi <drb@google.com>2016-10-25 01:33:50 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-10-25 01:33:50 +0000
commit44437259dd78b9f244d12c67e3baf2f0b7efae24 (patch)
tree294d639db05a0226fc2dd0d82b84aade1fb8ca98 /healthd
parent00c6d8ca2821059796793bc8c90ddf7cae104d0e (diff)
parent3f0250c3cc84b2480ef70d51343204eecbe84532 (diff)
downloadsystem_core-44437259dd78b9f244d12c67e3baf2f0b7efae24.tar.gz
system_core-44437259dd78b9f244d12c67e3baf2f0b7efae24.tar.bz2
system_core-44437259dd78b9f244d12c67e3baf2f0b7efae24.zip
Always show the battery percentage unless it is unknown
am: 3f0250c3cc Change-Id: I6e759572904fb7f505528812266fc48ecc8afd49
Diffstat (limited to 'healthd')
-rw-r--r--healthd/healthd_mode_charger.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/healthd/healthd_mode_charger.cpp b/healthd/healthd_mode_charger.cpp
index 6551cc777..ccf948b31 100644
--- a/healthd/healthd_mode_charger.cpp
+++ b/healthd/healthd_mode_charger.cpp
@@ -341,14 +341,19 @@ static void draw_clock(const animation& anim)
static void draw_percent(const animation& anim)
{
- if (anim.cur_level <= 0 || anim.cur_status != BATTERY_STATUS_CHARGING) return;
+ int cur_level = anim.cur_level;
+ if (anim.cur_status == BATTERY_STATUS_FULL) {
+ cur_level = 100;
+ }
+
+ if (cur_level <= 0) return;
const animation::text_field& field = anim.text_percent;
if (field.font == nullptr || field.font->char_width == 0 || field.font->char_height == 0) {
return;
}
- std::string str = base::StringPrintf("%d%%", anim.cur_level);
+ std::string str = base::StringPrintf("%d%%", cur_level);
int x, y;
determine_xy(field, str.size(), &x, &y);