Skip to content

Commit da06c55

Browse files
author
Tomohiro Oda
committed
bugfix on reading GRRM directory
1 parent b07d3c2 commit da06c55

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

repository/ReactionMapViewer/RMapMorph.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ RMapMorph class >> fromDirectory: aFileReference [
181181
y := index // numGrids.
182182
x odd
183183
ifTrue: [ y := y + 0.5 ].
184-
eq position: (x + 0.5) * gap , ((y + 0.5) * gap).
184+
eq position: (x + 0.5) * gap ,, ((y + 0.5) * gap).
185185
eq gap: gap ].
186186
[ | changed |
187187
changed := false.

repository/ReactionMapViewer/RMapMorph.extension.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ RMapMorph class >> fromDirectory: aFileReference [
5757
y := index // numGrids.
5858
x odd
5959
ifTrue: [ y := y + 0.5 ].
60-
eq position: (x + 0.5) * gap , ((y + 0.5) * gap).
60+
eq position: (x + 0.5) * gap ,, ((y + 0.5) * gap).
6161
eq gap: gap ].
6262
[ | changed |
6363
changed := false.

0 commit comments

Comments
 (0)