diff --git a/HISTORY.md b/HISTORY.md index a71398a7..db2cad89 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -23,6 +23,9 @@ * Tamil, thanks, Barthdry! * German +### 2020-12-11 +* blocks: fixed special drop-downs for keyboard entry + ### 2020-12-09 * Tamil translation update, thanks, Barthdry! * threads, objects: added hyperdyadic ATAN2 primitive reachable via "relabel" diff --git a/snap.html b/snap.html index 8da4dddf..09dcadd4 100755 --- a/snap.html +++ b/snap.html @@ -8,7 +8,7 @@ - + diff --git a/src/blocks.js b/src/blocks.js index f02379f9..e5e5030d 100644 --- a/src/blocks.js +++ b/src/blocks.js @@ -158,7 +158,7 @@ CustomCommandBlockMorph, SymbolMorph, ToggleButtonMorph, DialMorph*/ // Global stuff //////////////////////////////////////////////////////// -modules.blocks = '2020-December-07'; +modules.blocks = '2020-December-11'; var SyntaxElementMorph; var BlockMorph; @@ -9026,7 +9026,7 @@ InputSlotMorph.prototype.menuFromDict = function ( if (choices instanceof Function) { choices = choices.call(this); } else if (isString(choices)) { - choices = this[choices](enableKeyboard); + choices = this[choices](); if (!choices) { // menu has already happened return; }