X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka_Displayio.git/blobdiff_plain/e74f23cb01a08dcc664aa6f36527e6d987322dfb..1e01f5eee6a316b5e0df9448243833daab98ca5e:/displayio/tilegrid.py diff --git a/displayio/tilegrid.py b/displayio/tilegrid.py index 774dd77..c88498d 100644 --- a/displayio/tilegrid.py +++ b/displayio/tilegrid.py @@ -103,10 +103,10 @@ class TileGrid: tile_width = bitmap_width if tile_height is None: tile_height = bitmap_height - if bitmap_width % tile_width != 0: + if tile_width > 0 and bitmap_width % tile_width != 0: raise ValueError("Tile width must exactly divide bitmap width") self._tile_width = tile_width - if bitmap_height % tile_height != 0: + if tile_height > 0 and bitmap_height % tile_height != 0: raise ValueError("Tile height must exactly divide bitmap height") self._tile_height = tile_height if not 0 <= default_tile <= 255: