From 56336f717883844aa3adba37cc9a85540e0dc219 Mon Sep 17 00:00:00 2001 From: Eric House Date: Thu, 24 Jul 2014 20:36:37 -0700 Subject: [PATCH] double the max size of a tile, fixing board not using full screen in portrait mode on Nexus 10. --- xwords4/common/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xwords4/common/board.c b/xwords4/common/board.c index 099c15500..f1bd54e28 100644 --- a/xwords4/common/board.c +++ b/xwords4/common/board.c @@ -439,7 +439,7 @@ board_figureLayout( BoardCtxt* board, const CurGameInfo* gi, XP_MEMSET( &ldims, 0, sizeof(ldims) ); XP_U16 nCells = gi->boardSize; - XP_U16 maxCellSize = 4 * fontHt; + XP_U16 maxCellSize = 8 * fontHt; XP_U16 trayHt; XP_U16 scoreHt; XP_U16 wantHt;