Skip to content

Commit

Permalink
rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeAtHPI committed Nov 21, 2023
1 parent 037bb60 commit 6300cdd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/Sandblocks-Babylonian/SBExampleWatch.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -171,12 +171,12 @@ SBExampleWatch >> exampleStarting: anExample [

exampleToValues at: anExample put: OrderedCollection new.

(exampleToDisplay at: anExample ifAbsentPut: [ | watchview |
watchview := SBExampleValueDisplay new.
watchview display fallbackResizer: self selectedMorphResizer.
self addMorph: (exampleToDisplay at: anExample put: watchview) atIndex: 2.
(exampleToDisplay at: anExample ifAbsentPut: [ | valueDisplay |
valueDisplay := SBExampleValueDisplay new.
valueDisplay display fallbackResizer: self selectedMorphResizer.
self addMorph: (exampleToDisplay at: anExample put: valueDisplay) atIndex: 2.
anExample when: #outOfWorld send: #exampleStopped: to: self with: anExample.
watchview])
valueDisplay])
exampleStarting: anExample;
name: anExample label
]
Expand Down

0 comments on commit 6300cdd

Please sign in to comment.