kopia lustrzana https://github.com/backface/turtlestitch
fixed #2041
rodzic
421c5dafd5
commit
ab69d1adb4
|
@ -6,9 +6,12 @@
|
|||
* **Notable Fixes:**
|
||||
* **Translation Updates:**
|
||||
|
||||
### 2019-07-24
|
||||
* byob: fixed #2041
|
||||
|
||||
## v5.0.6
|
||||
* **Notable Fix:**
|
||||
* IME text editing support, thanks, @swiperthefox!
|
||||
* IME text editing support, thanks, Zhenlei Jia @swiperthefox!
|
||||
|
||||
### 2019-07-23
|
||||
* morphic: minor code reformatting for LINTers
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Snap! Build Your Own Blocks 5.0.6</title>
|
||||
<title>Snap! Build Your Own Blocks 5.0.7 - dev -</title>
|
||||
<link rel="shortcut icon" href="src/favicon.ico">
|
||||
<script type="text/javascript" src="src/morphic.js?version=2019-07-23"></script>
|
||||
<script type="text/javascript" src="src/widgets.js?version=2019-06-27"></script>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<script type="text/javascript" src="src/gui.js?version=2019-07-23"></script>
|
||||
<script type="text/javascript" src="src/paint.js?version=2019-06-27"></script>
|
||||
<script type="text/javascript" src="src/lists.js?version=2019-07-01"></script>
|
||||
<script type="text/javascript" src="src/byob.js?version=2019-07-15"></script>
|
||||
<script type="text/javascript" src="src/byob.js?version=2019-07-24"></script>
|
||||
<script type="text/javascript" src="src/tables.js?version=2019-06-27"></script>
|
||||
<script type="text/javascript" src="src/symbols.js?version=2019-06-27"></script>
|
||||
<script type="text/javascript" src="src/sketch.js?version=2019-06-27"></script>
|
||||
|
|
|
@ -108,7 +108,7 @@ BooleanSlotMorph, XML_Serializer, SnapTranslator*/
|
|||
|
||||
// Global stuff ////////////////////////////////////////////////////////
|
||||
|
||||
modules.byob = '2019-July-15';
|
||||
modules.byob = '2019-July-24';
|
||||
|
||||
// Declarations
|
||||
|
||||
|
@ -2821,7 +2821,6 @@ BlockLabelFragmentMorph.prototype.mouseClickLeft = function () {
|
|||
|
||||
BlockLabelFragmentMorph.prototype.updateBlockLabel = function (newFragment) {
|
||||
var prot = this.parentThatIsA(BlockMorph);
|
||||
|
||||
this.fragment = newFragment;
|
||||
if (prot) {
|
||||
prot.refreshPrototype();
|
||||
|
@ -3209,9 +3208,9 @@ InputSlotDialogMorph.prototype.getInput = function () {
|
|||
this.slots.defaultInputField.getValue();
|
||||
}
|
||||
return lbl;
|
||||
} else if (!this.noDelete) {
|
||||
this.fragment.isDeleted = true;
|
||||
}
|
||||
// otherwise remove the fragment
|
||||
this.fragment.isDeleted = true;
|
||||
return null;
|
||||
};
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue