Marcel Taeumel uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-kfr.347.mcz==================== Summary ====================
Name: EToys-kfr.347
Author: kfr
Time: 18 August 2019, 11:41:13.596323 am
UUID: 76127dd0-7463-ef43-a54a-777573d0d59b
Ancestors: EToys-kfr.346
Spelin eror
=============== Diff against EToys-mt.345 ===============
Item was changed:
----- Method: EtoysDebugger>>evaluateNextTile (in category 'evaluating') -----
evaluateNextTile
+ (scriptEditor isTextuallyCoded) ifTrue:[^self inform:'You cant step through textually coded scripts'].
[next = (scriptEditor tiles at: 1 ifAbsent: [nil])
ifTrue: ["We are about to evaluate the first tile"
self updateStartingPosition].
self trailMorph batchPenTrails
ifTrue: [self evaluateNextTileWithBatchPenTrails]
ifFalse: [next evaluateOn: self]]
on: Error do: [:err || newNext |
newNext := scriptEditor tiles at: 1 ifAbsent: [^ self].
newNext = next
ifTrue: [err pass]
ifFalse: [next := newNext].
self evaluateNextTile]
!