diff options
author | Luke Song <songwalker@google.com> | 2017-10-04 01:17:16 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-10-04 01:17:16 +0200 |
commit | c6e12b5f433a9fed0cc3985cfda81847786044b5 (patch) | |
tree | d53599e0cf68af2b7b496b7346144582c2bd8af0 | |
parent | Merge "roots: Fix an issue with volume_for_path()." (diff) | |
parent | Merge "screen_ui: stage marker positioning" (diff) | |
download | android_bootable_recovery-c6e12b5f433a9fed0cc3985cfda81847786044b5.tar android_bootable_recovery-c6e12b5f433a9fed0cc3985cfda81847786044b5.tar.gz android_bootable_recovery-c6e12b5f433a9fed0cc3985cfda81847786044b5.tar.bz2 android_bootable_recovery-c6e12b5f433a9fed0cc3985cfda81847786044b5.tar.lz android_bootable_recovery-c6e12b5f433a9fed0cc3985cfda81847786044b5.tar.xz android_bootable_recovery-c6e12b5f433a9fed0cc3985cfda81847786044b5.tar.zst android_bootable_recovery-c6e12b5f433a9fed0cc3985cfda81847786044b5.zip |
-rw-r--r-- | screen_ui.cpp | 2 |
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); |