Sqlite tile source: add column tile size

This commit is contained in:
Victor Shcherb 2019-07-24 13:24:21 +02:00
parent e96516243c
commit 4ab80cc219

View file

@ -364,7 +364,7 @@ public class SQLiteTileSource implements ITileSource {
} else if(!tileSizeSpecified &&
tileSize != bmp.getWidth() && bmp.getWidth() > 0) {
tileSize = bmp.getWidth();
addInfoColumn("tilesize", tileSize);
addInfoColumn("tilesize", tileSize+"");
tileSizeSpecified = true;
}
return bmp;