kopia lustrzana https://github.com/backface/turtlestitch
fixed a resizing edge case bug for the stage prompter (ASK command)
rodzic
aff8838e5f
commit
8acfcc3f5b
|
@ -2,10 +2,13 @@
|
||||||
|
|
||||||
## in development:
|
## in development:
|
||||||
* **Notable Fixes:**
|
* **Notable Fixes:**
|
||||||
* fixed DEAL in the APL library, thanks, Brian
|
* fixed DEAL in the APL library, thanks, Brian!
|
||||||
|
* fixed a resizing edge case bug for the stage prompter (ASK command)
|
||||||
|
|
||||||
### 2021-03-28
|
### 2021-03-28
|
||||||
* new dev version
|
* new dev version
|
||||||
|
* fixed DEAL in the APL library, thanks, Brian!
|
||||||
|
* objects: fixed a resizing edge case bug for the stage prompter (ASK command)
|
||||||
|
|
||||||
## 6.7.3
|
## 6.7.3
|
||||||
* **Notable Changes:**
|
* **Notable Changes:**
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
<script src="src/widgets.js?version=2021-01-05"></script>
|
<script src="src/widgets.js?version=2021-01-05"></script>
|
||||||
<script src="src/blocks.js?version=2021-02-27"></script>
|
<script src="src/blocks.js?version=2021-02-27"></script>
|
||||||
<script src="src/threads.js?version=2021-03-19"></script>
|
<script src="src/threads.js?version=2021-03-19"></script>
|
||||||
<script src="src/objects.js?version=2021-03-09"></script>
|
<script src="src/objects.js?version=2021-03-28"></script>
|
||||||
<script src="src/gui.js?version=2021-03-28"></script>
|
<script src="src/gui.js?version=2021-03-28"></script>
|
||||||
<script src="src/paint.js?version=2020-05-17"></script>
|
<script src="src/paint.js?version=2020-05-17"></script>
|
||||||
<script src="src/lists.js?version=2021-03-15"></script>
|
<script src="src/lists.js?version=2021-03-15"></script>
|
||||||
|
|
|
@ -84,7 +84,7 @@ BlockEditorMorph, BlockDialogMorph, PrototypeHatBlockMorph, BooleanSlotMorph,
|
||||||
localize, TableMorph, TableFrameMorph, normalizeCanvas, VectorPaintEditorMorph,
|
localize, TableMorph, TableFrameMorph, normalizeCanvas, VectorPaintEditorMorph,
|
||||||
AlignmentMorph, Process, WorldMap, copyCanvas, useBlurredShadows*/
|
AlignmentMorph, Process, WorldMap, copyCanvas, useBlurredShadows*/
|
||||||
|
|
||||||
modules.objects = '2021-March-09';
|
modules.objects = '2021-March-28';
|
||||||
|
|
||||||
var SpriteMorph;
|
var SpriteMorph;
|
||||||
var StageMorph;
|
var StageMorph;
|
||||||
|
@ -12192,7 +12192,7 @@ StagePrompterMorph.prototype.fixLayout = function () {
|
||||||
);
|
);
|
||||||
this.button.setCenter(this.inputField.center());
|
this.button.setCenter(this.inputField.center());
|
||||||
this.button.setLeft(this.inputField.right() + this.border);
|
this.button.setLeft(this.inputField.right() + this.border);
|
||||||
this.setHeight(
|
this.bounds.setHeight(
|
||||||
this.inputField.bottom()
|
this.inputField.bottom()
|
||||||
- this.top()
|
- this.top()
|
||||||
+ this.edge
|
+ this.edge
|
||||||
|
|
Ładowanie…
Reference in New Issue