Porównaj commity

...

3 Commity

Autor SHA1 Wiadomość Data
Michael 7e4d66b94c update gui.js 2022-10-29 16:43:06 +02:00
Michael Aschauer 786fe341ff
Merge pull request #124 from Simon-Mong/patch-41
Update gui.js
2022-10-29 16:38:13 +02:00
Simon-Mong 842c9085e3
Update gui.js
fix the bug that causes the unexpected auto scrolling of the script editor when a block is dragged in.
2022-10-29 21:31:15 +08:00
2 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -48,7 +48,7 @@
<script type="text/javascript" src="stitchcode/threads.js?version=2022-10-05"></script>
<script type="text/javascript" src="stitchcode/objects.js?version=2022-10-05"></script>
<script type="text/javascript" src="stitchcode/turtlecloud.js?version=2022-10-05"></script>
<script type="text/javascript" src="stitchcode/gui.js?version=2022-10-07"></script>
<script type="text/javascript" src="stitchcode/gui.js?version=2022-10-29"></script>
<script type="text/javascript" src="stitchcode/store.js?version=2022-06-14"></script>
<script type="text/javascript">

Wyświetl plik

@ -1,4 +1,4 @@
VERSION="2.7.10"
VERSION="2.7.11"
// get debug mode
url = new URL(window.location.href);
@ -2472,6 +2472,8 @@ IDE_Morph.prototype.createSpriteEditor = function(){
this.originalCreateSpriteEditor();
this.spriteEditor.color = new Color(240, 240, 240);
this.currentSprite.scripts.color = new Color(240, 240, 240);
this.spriteEditor.mouseEnterDragging = nop;
this.spriteEditor.contents.mouseEnterDragging =nop;
};
/* CORRAL BAR */