Not all outputs are stored by default.
This commit is contained in:
parent
ebeb8acfcb
commit
40a8a58e70
@ -702,6 +702,12 @@ GrafoscopioNode >> preorderTraversal [
|
||||
^ nodesInPreorder.
|
||||
]
|
||||
|
||||
{ #category : #'as yet unclassified' }
|
||||
GrafoscopioNode >> processOutput [
|
||||
(self headerStartsWith: '%output')
|
||||
ifTrue: [ self output: (Compiler evaluate: self body) ]
|
||||
]
|
||||
|
||||
{ #category : #movement }
|
||||
GrafoscopioNode >> promote [
|
||||
"Moves the current node up in the hierachy, making it a slibing of its current parent"
|
||||
|
@ -66,7 +66,7 @@ GrafoscopioNotebook >> autoSaveBodyOf: aNode [
|
||||
onChangeOfPort: #text
|
||||
act: [ :x | aNode body: x entity value content ];
|
||||
onChangeOfPort: #activePresentation
|
||||
act: [ aNode output: (Compiler evaluate: aNode body) ]
|
||||
act: [ aNode output: aNode processOutput ]
|
||||
]
|
||||
|
||||
{ #category : #accessing }
|
||||
|
Loading…
Reference in New Issue
Block a user