Open GoogleCodeExporter opened 9 years ago
The bugged line is identified, line 1096, function interfaceUpdate(alt)
Change the lines :
if ('trueSize' in options) {
xscale = options.trueSize[0] / boundx;
yscale = options.trueSize[1] / boundy;
}
By the lines :
if ('trueSize' in options) {
xscale = Math.ceil(options.trueSize[0] / boundx);
yscale = Math.ceil(options.trueSize[1] / boundy);
}
And the bug will be fixed !
Original comment by denis.tr...@gmail.com
on 20 Aug 2010 at 11:51
Original issue reported on code.google.com by
denis.tr...@gmail.com
on 23 May 2010 at 9:17