Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/NewTools-MethodBrowsers/StMethodBrowser.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ StMethodBrowser >> connectPresenters [
whenModelChangedDo: [ self updateTitle ].
methodList navigationBlock: [ :type :val | self navigateTo: type value: val ].
textPresenter
whenSubmitDo: [ :text | self accept: text notifying: self ];
whenSubmitDo: [ :text | self accept: text notifying: textPresenter interactionModel ];
whenResetDo: [ self selectItem: methodList selectedMethod ].
filterPresenter filterInputPresenter whenTextChangedDo: [ :text |
| currentScope scopedMethods filtered |
Expand Down
5 changes: 0 additions & 5 deletions src/NewTools-Playground/StPlaygroundInteractionModel.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,6 @@ StPlaygroundInteractionModel >> bindings [
^ joinedBindings
]

{ #category : 'interactive error protocol' }
StPlaygroundInteractionModel >> correctFrom: start to: stop with: aString [
self owner adapter widget correctFrom: start to: stop with: aString
]

{ #category : 'binding' }
StPlaygroundInteractionModel >> hasBindingOf: aString [

Expand Down
Loading