From 947fc150cc4c67d78368b24a93a4fda842564949 Mon Sep 17 00:00:00 2001 From: jmoenig Date: Fri, 11 Dec 2020 09:41:37 +0100 Subject: [PATCH] fixed special drop-downs for keyboard entry --- HISTORY.md | 3 +++ snap.html | 2 +- src/blocks.js | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) 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; }