Skip to content

Commit c8c655d

Browse files
committed
fixed a variadic input slot arrow layout bug
1 parent 934bde2 commit c8c655d

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

HISTORY.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## in development:
44

5+
## 10.2.4:
6+
* **Notable Fixes:**
7+
* fixed a variadic input slot arrow layout bug
8+
59
## 10.2.3:
610
* **New Features:**
711
* expose a copy of the custom block as "caller" to input slot reaction scripts inside custom block definitions

src/blocks.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14310,7 +14310,7 @@ MultiArgMorph.prototype.fixArrowsLayout = function () {
1431014310
label.hide();
1431114311
}
1431214312
leftArrow.hide();
14313-
if (this.minInputs === this.maxInputs) {
14313+
if (this.minInputs && this.minInputs === this.maxInputs) {
1431414314
rightArrow.hide();
1431514315
}
1431614316
if (this.isStatic) {

src/gui.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ modules.gui = '2024-November-12';
9191

9292
// Declarations
9393

94-
var SnapVersion = '10.2.3';
94+
var SnapVersion = '10.2.4';
9595

9696
var IDE_Morph;
9797
var ProjectDialogMorph;

sw.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*global self, caches*/
22
/*jshint esversion: 6*/
3-
var snapVersion = '10.2.3',
3+
var snapVersion = '10.2.4',
44
cacheName = `snap-pwa-${snapVersion}`,
55
filesToCache = [
66
'snap.html',

0 commit comments

Comments
 (0)