Fixed bug when using area as box size without web-workers

This commit is contained in:
Christoph Oberhofer
2015-06-23 21:02:32 +02:00
parent 4f224b782a
commit 8ad97419c3
3 changed files with 12 additions and 4 deletions
+5 -1
View File
@@ -8564,7 +8564,11 @@ function(Code128Reader,
if (_config.locate) {
return BarcodeLocator.locate();
} else {
return [_boxSize];
return [[
vec2.create(_boxSize[0]),
vec2.create(_boxSize[1]),
vec2.create(_boxSize[2]),
vec2.create(_boxSize[3])]];
}
}
+2 -2
View File
File diff suppressed because one or more lines are too long