Fix issue with multi digit numbers not scrolling all the way off screen as is the case on the physical pxt.

This commit is contained in:
Sam El-Husseini 2016-07-28 15:54:10 -07:00
parent c6ed665f84
commit 65594842fc
1 changed files with 2 additions and 1 deletions

View File

@ -725,7 +725,8 @@ namespace pxsim.ImageMethods {
board().animationQ.enqueue({
interval: interval,
frame: () => {
if (off >= leds.width || off < 0) return false;
//TODO: support right to left.
if (off >= leds.width + 5 || off < 0) return false;
stride > 0 ? display.shiftLeft(stride) : display.shiftRight(-stride);
let c = Math.min(stride, leds.width - off);
leds.copyTo(off, c, display, 5 - stride)