summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Song <songwalker@google.com>2017-10-04 01:30:20 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-10-04 01:30:20 +0200
commit795bbb0dc957f2f43346e8bb3af2a223466d0703 (patch)
tree401886073879aebd5cae8476023b74e18a3053dc
parentMerge "roots: Fix an issue with volume_for_path()." am: dd7a4b5264 am: 8b8c7eb442 am: 24801a3438 (diff)
parentMerge "screen_ui: stage marker positioning" am: 16817312a6 am: c6e12b5f43 (diff)
downloadandroid_bootable_recovery-795bbb0dc957f2f43346e8bb3af2a223466d0703.tar
android_bootable_recovery-795bbb0dc957f2f43346e8bb3af2a223466d0703.tar.gz
android_bootable_recovery-795bbb0dc957f2f43346e8bb3af2a223466d0703.tar.bz2
android_bootable_recovery-795bbb0dc957f2f43346e8bb3af2a223466d0703.tar.lz
android_bootable_recovery-795bbb0dc957f2f43346e8bb3af2a223466d0703.tar.xz
android_bootable_recovery-795bbb0dc957f2f43346e8bb3af2a223466d0703.tar.zst
android_bootable_recovery-795bbb0dc957f2f43346e8bb3af2a223466d0703.zip
-rw-r--r--screen_ui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/screen_ui.cpp b/screen_ui.cpp
index bc5c5c31f..166d7b4cf 100644
--- a/screen_ui.cpp
+++ b/screen_ui.cpp
@@ -165,7 +165,7 @@ void ScreenRecoveryUI::draw_background_locked() {
int stage_height = gr_get_height(stageMarkerEmpty);
int stage_width = gr_get_width(stageMarkerEmpty);
int x = (gr_fb_width() - max_stage * gr_get_width(stageMarkerEmpty)) / 2;
- int y = gr_fb_height() - stage_height;
+ int y = gr_fb_height() - stage_height - kMarginHeight;
for (int i = 0; i < max_stage; ++i) {
GRSurface* stage_surface = (i < stage) ? stageMarkerFill : stageMarkerEmpty;
gr_blit(stage_surface, 0, 0, stage_width, stage_height, x, y);