summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-08-17 02:42:39 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-08-17 02:42:39 +0200
commit151126360ec69490dfbff741e8e7928580bd5ba0 (patch)
tree484680953eb51bf0576edb527e5780ce90f8e6a7
parentMerge "screen_ui: Word-wrap menu headers." (diff)
parentMerge "screen_ui: Fix a case that may truncate the last char." (diff)
downloadandroid_bootable_recovery-151126360ec69490dfbff741e8e7928580bd5ba0.tar
android_bootable_recovery-151126360ec69490dfbff741e8e7928580bd5ba0.tar.gz
android_bootable_recovery-151126360ec69490dfbff741e8e7928580bd5ba0.tar.bz2
android_bootable_recovery-151126360ec69490dfbff741e8e7928580bd5ba0.tar.lz
android_bootable_recovery-151126360ec69490dfbff741e8e7928580bd5ba0.tar.xz
android_bootable_recovery-151126360ec69490dfbff741e8e7928580bd5ba0.tar.zst
android_bootable_recovery-151126360ec69490dfbff741e8e7928580bd5ba0.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;