From 0ba390d09fab298dd57003e3f130b7ab57459f0e Mon Sep 17 00:00:00 2001 From: adrienmalin <41926238+adrienmalin@users.noreply.github.com> Date: Mon, 6 Aug 2018 17:36:42 +0200 Subject: [PATCH] Correcting piece positionning in hold queue and next piece frame --- grids.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grids.py b/grids.py index 9105575..cee194f 100644 --- a/grids.py +++ b/grids.py @@ -19,7 +19,7 @@ class Grid(QtWidgets.QWidget): COLUMNS = consts.GRID_DEFAULT_COLUMNS STARTING_POSITION = Point( consts.GRID_DEFAULT_COLUMNS // 2, - consts.GRID_DEFAULT_ROWS // 2 + 2 + consts.GRID_DEFAULT_ROWS // 2 + consts.GRID_INVISIBLE_ROWS ) GRIDLINE_COLOR = consts.GRID_GRIDLINE_COLOR HARD_DROP_MOVEMENT = consts.GRID_HARD_DROP_MOVEMENT