Merge "screen_ui: Fix a case that may truncate the last char."
am: 2e99c38cfd
Change-Id: I948a78eb97fbc098610d3410f126843e360e5f65
This commit is contained in:
commit
151126360e
1 changed files with 2 additions and 1 deletions
|
@ -344,7 +344,8 @@ void ScreenRecoveryUI::draw_screen_locked() {
|
||||||
y += DrawTextLines(x, y, HasThreeButtons() ? REGULAR_HELP : LONG_PRESS_HELP);
|
y += DrawTextLines(x, y, HasThreeButtons() ? REGULAR_HELP : LONG_PRESS_HELP);
|
||||||
|
|
||||||
SetColor(HEADER);
|
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);
|
SetColor(MENU);
|
||||||
y += DrawHorizontalRule(y) + 4;
|
y += DrawHorizontalRule(y) + 4;
|
||||||
|
|
Loading…
Reference in a new issue