diff --git a/app/components/Settings/BottomScreen/Menus/User/Color.vue b/app/components/Settings/BottomScreen/Menus/User/Color.vue index 133f759..c1a9f8e 100644 --- a/app/components/Settings/BottomScreen/Menus/User/Color.vue +++ b/app/components/Settings/BottomScreen/Menus/User/Color.vue @@ -48,7 +48,7 @@ useScreenClick((x, y) => { const cellLocalY = relativeY % (CELL_SIZE + SPACING); if ( - rectContains([0, 0, GRID_SIZE, GRID_SIZE], [col, row]) && + rectContains([0, 0, GRID_SIZE - 1, GRID_SIZE - 1], [col, row]) && rectContains([0, 0, CELL_SIZE + 1, CELL_SIZE + 1], [cellLocalX, cellLocalY]) ) { select(col, row);