Fixing the bug about code nodes being replaced by their output when such output was text. Thanks Doru :-).

This commit is contained in:
Offray Vladimir Luna Cárdenas 2017-02-08 20:52:11 +00:00 committed by SantiagoBragagnolo
parent 453e8fd88f
commit 8537f8890a
2 changed files with 3 additions and 9 deletions

View File

@ -493,7 +493,7 @@ GrafoscopioNode >> level: anInteger [
{ #category : #accessing }
GrafoscopioNode >> links [
"I model local or remote links that are associated to a particular node."
^ links ifNil: [ ^ links = OrderedCollection new ]
^ links ifNil: [ ^ links := OrderedCollection new ]
]
{ #category : #accessing }

View File

@ -62,14 +62,8 @@ GrafoscopioNotebook >> autoSaveBodyOf: aNode [
ifTrue: [ | playground |
playground := body body glmPres.
playground
when: GLMContextChanged
do: [ :ann |
ann property = #text
ifTrue: [ | playgroundText |
playgroundText := (playground pane ports at: 2) value.
aNode body: playgroundText ]
]
]
onChangeOfPort: #text
act: [ :x | aNode body: x entity value content ]]
]
{ #category : #accessing }