poppy: center detachable menu text

BUG=b:35585623
BRANCH=None
TEST=reboot and make sure menu is centered in fw screen
CQ-DEPEND=CL:447818

Change-Id: I7ce5063adab978338af18ad2befe65107fdea21f
Signed-off-by: Shelley Chen <shchen@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/447838
Reviewed-by: Randall Spangler <rspangler@chromium.org>
This commit is contained in:
Shelley Chen
2017-02-27 15:58:22 -08:00
committed by chrome-bot
parent 97a8aa97c3
commit 50d1282e85

View File

@@ -332,12 +332,16 @@ VbError_t vb2_print_current_menu()
static char **m = NULL; static char **m = NULL;
int highlight = 0; int highlight = 0;
// TODO: We probably want to center this text. // TODO: We probably want to center this text.
int xindex = 50; uint32_t xindex, yindex;
int yindex = 30;
// TODO: need to check for error code. // TODO: need to check for error code.
vb2_get_current_menu_size(current_menu, &m, &size); vb2_get_current_menu_size(current_menu, &m, &size);
/* Center block of text */
VbExDisplayGetDimension(&xindex, &yindex);
xindex = xindex/2 - strlen(m[0])/2;
yindex = yindex/2 - size/2;
// TODO: do clear screen here. // TODO: do clear screen here.
/* Create menu string */ /* Create menu string */
for (i = 0; i < size; i++) { for (i = 0; i < size; i++) {