kopia lustrzana https://github.com/backface/turtlestitch
Fixed #24
rodzic
1505796e19
commit
e51a0ed718
|
@ -1691,3 +1691,4 @@ ______
|
||||||
* Morphic: Allow triggers to be dragged if so specified (#83)
|
* Morphic: Allow triggers to be dragged if so specified (#83)
|
||||||
* GUI: select dragged costume
|
* GUI: select dragged costume
|
||||||
* Blocks: eraser symbol for paint editor
|
* Blocks: eraser symbol for paint editor
|
||||||
|
* Morphic: ScrollFrame scrollY() fix (fixes #24)
|
||||||
|
|
|
@ -8705,6 +8705,9 @@ ScrollFrameMorph.prototype.scrollY = function (steps) {
|
||||||
}
|
}
|
||||||
if (newY + ch < b) {
|
if (newY + ch < b) {
|
||||||
newY = b - ch;
|
newY = b - ch;
|
||||||
|
if (newY > t) {
|
||||||
|
newY = t;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (newY !== ct) {
|
if (newY !== ct) {
|
||||||
this.contents.setTop(newY);
|
this.contents.setTop(newY);
|
||||||
|
|
Ładowanie…
Reference in New Issue