diff options
author | Doug Zongker <dougz@android.com> | 2014-03-12 03:42:57 +0100 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-03-12 03:42:57 +0100 |
commit | cb1bdc9e427b8b7262d1e56fef47d2bb6d76139f (patch) | |
tree | fcabf54bb6676e3e34a33d16ab79a15c11c2f661 /screen_ui.cpp | |
parent | am 8f087d02: Merge "update tools for making recovery images" (diff) | |
parent | Merge "remove pixelflinger from recovery" (diff) | |
download | android_bootable_recovery-cb1bdc9e427b8b7262d1e56fef47d2bb6d76139f.tar android_bootable_recovery-cb1bdc9e427b8b7262d1e56fef47d2bb6d76139f.tar.gz android_bootable_recovery-cb1bdc9e427b8b7262d1e56fef47d2bb6d76139f.tar.bz2 android_bootable_recovery-cb1bdc9e427b8b7262d1e56fef47d2bb6d76139f.tar.lz android_bootable_recovery-cb1bdc9e427b8b7262d1e56fef47d2bb6d76139f.tar.xz android_bootable_recovery-cb1bdc9e427b8b7262d1e56fef47d2bb6d76139f.tar.zst android_bootable_recovery-cb1bdc9e427b8b7262d1e56fef47d2bb6d76139f.zip |
Diffstat (limited to '')
-rw-r--r-- | screen_ui.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/screen_ui.cpp b/screen_ui.cpp index 29d5491ca..86429c9c1 100644 --- a/screen_ui.cpp +++ b/screen_ui.cpp @@ -86,7 +86,7 @@ void ScreenRecoveryUI::draw_background_locked(Icon icon) { pagesIdentical = false; gr_color(0, 0, 0, 255); - gr_fill(0, 0, gr_fb_width(), gr_fb_height()); + gr_clear(); if (icon) { gr_surface surface = backgroundIcon[icon]; @@ -203,12 +203,12 @@ void ScreenRecoveryUI::SetColor(UIElement e) { // Should only be called with updateMutex locked. void ScreenRecoveryUI::draw_screen_locked() { - draw_background_locked(currentIcon); - draw_progress_locked(); - - if (show_text) { - SetColor(TEXT_FILL); - gr_fill(0, 0, gr_fb_width(), gr_fb_height()); + if (!show_text) { + draw_background_locked(currentIcon); + draw_progress_locked(); + } else { + gr_color(0, 0, 0, 255); + gr_clear(); int y = 0; int i = 0; |