From 70a6ff3961d34ca9698f8bf2810f0321e145b832 Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Mon, 6 May 2019 20:14:29 +0000 Subject: [PATCH] Fixing https://mutabit.com/repos.fossil/grafoscopio/tktview?name=8835f9017a , finally! --- repository/Grafoscopio/GrafoscopioNotebook.class.st | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/repository/Grafoscopio/GrafoscopioNotebook.class.st b/repository/Grafoscopio/GrafoscopioNotebook.class.st index b05380f..dd834da 100644 --- a/repository/Grafoscopio/GrafoscopioNotebook.class.st +++ b/repository/Grafoscopio/GrafoscopioNotebook.class.st @@ -75,16 +75,14 @@ GrafoscopioNotebook >> addNode [ { #category : #operation } GrafoscopioNotebook >> autoSaveBodyOf: aNode [ | playground | - body body class = TextModel + self body class = TextModel ifTrue: [ body body whenTextChanged: [ :arg | aNode body: arg ] ]. body body class = GlamourPresentationModel ifFalse: [ ^ self ]. playground := body body glmPres. playground onChangeOfPort: #text - act: [ :x | aNode body: (x pane port: #text) value ]"; - onChangeOfPort: #activePresentation - act: [ aNode output: aNode processOutput ]" + act: [ :x | aNode body: (x pane port: #entity) value content ] ] { #category : #accessing }