From b71130d3d60991e00cf8951cfac898bb432d01e7 Mon Sep 17 00:00:00 2001 From: GarandPLG Date: Fri, 27 Mar 2026 16:58:22 +0100 Subject: [PATCH] Increase board cell dimensions Double the height from 4 to 8 and the width from 7 to 14 to improve readability of the board display. --- src/app/widgets/board.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/widgets/board.rs b/src/app/widgets/board.rs index ae00e98..23c2b8e 100644 --- a/src/app/widgets/board.rs +++ b/src/app/widgets/board.rs @@ -17,8 +17,8 @@ pub struct BoardWidget { impl BoardWidget { pub fn new(app: &mut App, area_width: u16, area_height: u16) -> Self { - const CELL_HIGHT: u16 = 4; - const CELL_WIDTH: u16 = 7; + const CELL_HIGHT: u16 = 8; // 4 + const CELL_WIDTH: u16 = 14; // 7 let rows: u16 = area_height / CELL_HIGHT; let cols: u16 = area_width / CELL_WIDTH;