summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-08-17 02:48:48 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-08-17 02:48:48 +0200
commit7f7d9b2f37a52805f3690d96347ac08d927256f9 (patch)
tree0bdd7028436ab3a83277768defcda03d68e4ab0f
parentMerge "screen_ui: Word-wrap menu headers." am: 162b92323b am: 623bac4ed9 (diff)
parentMerge "screen_ui: Fix a case that may truncate the last char." am: 2e99c38cfd (diff)
downloadandroid_bootable_recovery-7f7d9b2f37a52805f3690d96347ac08d927256f9.tar
android_bootable_recovery-7f7d9b2f37a52805f3690d96347ac08d927256f9.tar.gz
android_bootable_recovery-7f7d9b2f37a52805f3690d96347ac08d927256f9.tar.bz2
android_bootable_recovery-7f7d9b2f37a52805f3690d96347ac08d927256f9.tar.lz
android_bootable_recovery-7f7d9b2f37a52805f3690d96347ac08d927256f9.tar.xz
android_bootable_recovery-7f7d9b2f37a52805f3690d96347ac08d927256f9.tar.zst
android_bootable_recovery-7f7d9b2f37a52805f3690d96347ac08d927256f9.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;