Skip to content

Commit

Permalink
fixed (I think) a problem with selections and transmissions.
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanlm committed Apr 28, 2023
1 parent 30d81b8 commit 52cb6e5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/NewTools-Inspector/StObjectContextPresenter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ StObjectContextPresenter >> doEvaluateAndGo [
onCompileError: [ ^ self ]
onError: [ :e | e pass ].

activationBlock value: (StEvaluatedSelectionModel newValue: value)
activationBlock value: value
]

{ #category : #private }
Expand Down
2 changes: 1 addition & 1 deletion src/NewTools-Inspector/StObjectInspectorPresenter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ StObjectInspectorPresenter class >> openOn: anObject [
StObjectInspectorPresenter >> activate: aSelection [

activationBlock ifNil: [ ^ self ].
activationBlock cull: (SpActivatedSelection newValue: aSelection)
activationBlock cull: aSelection
]

{ #category : #accessing }
Expand Down
2 changes: 1 addition & 1 deletion src/NewTools-Playground/StPlaygroundPagePresenter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ StPlaygroundPagePresenter >> doEvaluateAndGo [
onCompileError: [ ^ self ]
onError: [ :e | e pass ].

activationBlock value: (SpActivatedSelection newValue: value)
activationBlock value: value
]

{ #category : #accessing }
Expand Down

0 comments on commit 52cb6e5

Please sign in to comment.