Sqlite tile source: add column tile size
This commit is contained in:
parent
e96516243c
commit
4ab80cc219
1 changed files with 1 additions and 1 deletions
|
@ -364,7 +364,7 @@ public class SQLiteTileSource implements ITileSource {
|
||||||
} else if(!tileSizeSpecified &&
|
} else if(!tileSizeSpecified &&
|
||||||
tileSize != bmp.getWidth() && bmp.getWidth() > 0) {
|
tileSize != bmp.getWidth() && bmp.getWidth() > 0) {
|
||||||
tileSize = bmp.getWidth();
|
tileSize = bmp.getWidth();
|
||||||
addInfoColumn("tilesize", tileSize);
|
addInfoColumn("tilesize", tileSize+"");
|
||||||
tileSizeSpecified = true;
|
tileSizeSpecified = true;
|
||||||
}
|
}
|
||||||
return bmp;
|
return bmp;
|
||||||
|
|
Loading…
Reference in a new issue