diff --git a/blocks.js b/blocks.js index 1036671d..7cd3a20f 100644 --- a/blocks.js +++ b/blocks.js @@ -149,7 +149,7 @@ isSnapObject, copy, PushButtonMorph, SpriteIconMorph, Process, AlignmentMorph*/ // Global stuff //////////////////////////////////////////////////////// -modules.blocks = '2016-November-29'; +modules.blocks = '2016-December-01'; var SyntaxElementMorph; var BlockMorph; diff --git a/gui.js b/gui.js index 0b6a24be..1afb4579 100644 --- a/gui.js +++ b/gui.js @@ -5528,7 +5528,7 @@ ProjectDialogMorph.prototype.buildFilterField = function () { }); if (myself.listField.elements.length === 0) { - myself.listField.elements.push('(no matches)') + myself.listField.elements.push('(no matches)'); } myself.clearDetails(); @@ -6064,7 +6064,7 @@ ProjectDialogMorph.prototype.edit = function () { ProjectDialogMorph.prototype.fixLayout = function () { var th = fontHeight(this.titleFontSize) + this.titlePadding * 2, thin = this.padding / 2, - inputField = this.nameField || this.filterField; + inputField = this.nameField || this.filterField, oldFlag = Morph.prototype.trackChanges; Morph.prototype.trackChanges = false; diff --git a/history.txt b/history.txt index 88152828..4d72977e 100755 --- a/history.txt +++ b/history.txt @@ -3157,3 +3157,4 @@ http://snap.berkeley.edu/run#cloud:Username=jens&ProjectName=rotation 161201 ------ * GUI: fixed #1540 +* Morphic, Blocks, GUI: Filter Project Names in the “open” dialog, thanks, Bernat!! diff --git a/morphic.js b/morphic.js index 88721003..bf35169d 100644 --- a/morphic.js +++ b/morphic.js @@ -1136,7 +1136,7 @@ /*global window, HTMLCanvasElement, FileReader, Audio, FileList*/ -var morphicVersion = '2016-November-28'; +var morphicVersion = '2016-December-01'; var modules = {}; // keep track of additional loaded modules var useBlurredShadows = getBlurredShadowSupport(); // check for Chrome-bug @@ -2024,7 +2024,7 @@ Color.prototype.inverted = function () { 255 - this.g, 255 - this.b ); -} +}; // Points //////////////////////////////////////////////////////////////