summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-08-17 04:36:03 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-08-17 04:36:03 +0200
commita0c3b1392eaaa624a5bfcaeb3acf3984f1996fa3 (patch)
tree6b89f0e93cc165466f27edd0a008b16205d745c3
parentImport translations. DO NOT MERGE am: 20fa1a92cc -s ours (diff)
parentMerge "screen_ui: Fix a case that may truncate the last char." am: 2e99c38cfd am: 151126360e am: 228a2f2a37 (diff)
downloadandroid_bootable_recovery-a0c3b1392eaaa624a5bfcaeb3acf3984f1996fa3.tar
android_bootable_recovery-a0c3b1392eaaa624a5bfcaeb3acf3984f1996fa3.tar.gz
android_bootable_recovery-a0c3b1392eaaa624a5bfcaeb3acf3984f1996fa3.tar.bz2
android_bootable_recovery-a0c3b1392eaaa624a5bfcaeb3acf3984f1996fa3.tar.lz
android_bootable_recovery-a0c3b1392eaaa624a5bfcaeb3acf3984f1996fa3.tar.xz
android_bootable_recovery-a0c3b1392eaaa624a5bfcaeb3acf3984f1996fa3.tar.zst
android_bootable_recovery-a0c3b1392eaaa624a5bfcaeb3acf3984f1996fa3.zip
-rw-r--r--screen_ui.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/screen_ui.cpp b/screen_ui.cpp
index e056512bd..a02550199 100644
--- a/screen_ui.cpp
+++ b/screen_ui.cpp
@@ -344,7 +344,8 @@ void ScreenRecoveryUI::draw_screen_locked() {
y += DrawTextLines(x, y, HasThreeButtons() ? REGULAR_HELP : LONG_PRESS_HELP);
SetColor(HEADER);
- y += DrawWrappedTextLines(x, y, menu_headers_);
+ // Ignore kMenuIndent, which is not taken into account by text_cols_.
+ y += DrawWrappedTextLines(kMarginWidth, y, menu_headers_);
SetColor(MENU);
y += DrawHorizontalRule(y) + 4;