More proper fix

This commit is contained in:
DrabWeb 2017-03-23 09:05:53 -03:00
parent 3364801221
commit b429d8f1b3
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ public class Column : Container, IStateful<ColumnState>
private const float cube_size = 4;
private const float padding = 2;
public const float WIDTH = cube_size + padding;
public const float HEIGHT = (cube_count * WIDTH) + padding + 1;
public const float HEIGHT = cube_count * WIDTH + padding;
private readonly List<Box> drawableRows = new List<Box>();