kopia lustrzana https://github.com/backface/turtlestitch
fixed ProjectDialog's search field behavior for IME
rodzic
dfcfa1a569
commit
d5e1367da1
|
@ -7,6 +7,7 @@
|
||||||
* **Notable Changes:**
|
* **Notable Changes:**
|
||||||
* **Notable Fixes:**
|
* **Notable Fixes:**
|
||||||
* typing strings into the search-field again shows relevant blocks (regression from IME)
|
* typing strings into the search-field again shows relevant blocks (regression from IME)
|
||||||
|
* fixed project dialog's search-field behevior (regression from IME)
|
||||||
* morphic collision detection off-by-1 fix, thanks, Dariusz!
|
* morphic collision detection off-by-1 fix, thanks, Dariusz!
|
||||||
* fixed a typo in the OF-reporter's help screen, thanks, @jasonappah
|
* fixed a typo in the OF-reporter's help screen, thanks, @jasonappah
|
||||||
* enable costumes created in the vector editor to be stretchable in Firefox, thanks, @coproc
|
* enable costumes created in the vector editor to be stretchable in Firefox, thanks, @coproc
|
||||||
|
@ -19,6 +20,7 @@
|
||||||
### 2019-10-14
|
### 2019-10-14
|
||||||
* morphic: new "reactToInput" text-editing event
|
* morphic: new "reactToInput" text-editing event
|
||||||
* objects: fixed #2485 (find blocks and text-entry mode feature)
|
* objects: fixed #2485 (find blocks and text-entry mode feature)
|
||||||
|
* gui: fixed ProjectDialog's search field behavior for IME
|
||||||
|
|
||||||
### 2019-10-11
|
### 2019-10-11
|
||||||
* objects, threads: accept a list of pixels in the SWITCH TO COSTUME block
|
* objects, threads: accept a list of pixels in the SWITCH TO COSTUME block
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
<script type="text/javascript" src="src/blocks.js?version=2019-08-07"></script>
|
<script type="text/javascript" src="src/blocks.js?version=2019-08-07"></script>
|
||||||
<script type="text/javascript" src="src/threads.js?version=2019-10-11"></script>
|
<script type="text/javascript" src="src/threads.js?version=2019-10-11"></script>
|
||||||
<script type="text/javascript" src="src/objects.js?version=2019-10-14"></script>
|
<script type="text/javascript" src="src/objects.js?version=2019-10-14"></script>
|
||||||
<script type="text/javascript" src="src/gui.js?version=2019-10-09"></script>
|
<script type="text/javascript" src="src/gui.js?version=2019-10-14"></script>
|
||||||
<script type="text/javascript" src="src/paint.js?version=2019-06-27"></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/lists.js?version=2019-07-01"></script>
|
||||||
<script type="text/javascript" src="src/byob.js?version=2019-07-24"></script>
|
<script type="text/javascript" src="src/byob.js?version=2019-07-24"></script>
|
||||||
|
|
|
@ -75,7 +75,7 @@ isRetinaSupported, SliderMorph, Animation, BoxMorph, MediaRecorder*/
|
||||||
|
|
||||||
// Global stuff ////////////////////////////////////////////////////////
|
// Global stuff ////////////////////////////////////////////////////////
|
||||||
|
|
||||||
modules.gui = '2019-October-09';
|
modules.gui = '2019-October-14';
|
||||||
|
|
||||||
// Declarations
|
// Declarations
|
||||||
|
|
||||||
|
@ -6421,7 +6421,7 @@ ProjectDialogMorph.prototype.buildFilterField = function () {
|
||||||
this.body.add(this.magnifyingGlass);
|
this.body.add(this.magnifyingGlass);
|
||||||
this.body.add(this.filterField);
|
this.body.add(this.filterField);
|
||||||
|
|
||||||
this.filterField.reactToKeystroke = function (evt) {
|
this.filterField.reactToInput = function (evt) {
|
||||||
var text = this.getValue();
|
var text = this.getValue();
|
||||||
|
|
||||||
myself.listField.elements =
|
myself.listField.elements =
|
||||||
|
|
Ładowanie…
Reference in New Issue