Fixed #24 for horizontal scrolling

pull/3/merge
Nathan Dinsmore 2013-04-30 15:25:22 -04:00
rodzic e51a0ed718
commit 1fc39e61f7
1 zmienionych plików z 6 dodań i 9 usunięć

Wyświetl plik

@ -8681,12 +8681,12 @@ ScrollFrameMorph.prototype.scrollX = function (steps) {
newX;
newX = cl + steps;
if (newX > l) {
newX = l;
}
if (newX + cw < r) {
newX = r - cw;
}
if (newX > l) {
newX = l;
}
if (newX !== cl) {
this.contents.setLeft(newX);
}
@ -8700,14 +8700,11 @@ ScrollFrameMorph.prototype.scrollY = function (steps) {
newY;
newY = ct + steps;
if (newY > t) {
newY = t;
}
if (newY + ch < b) {
newY = b - ch;
if (newY > t) {
newY = t;
}
}
if (newY > t) {
newY = t;
}
if (newY !== ct) {
this.contents.setTop(newY);