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
4 changes: 2 additions & 2 deletions src/Molecule-IDE/MolComponentImpl.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -169,11 +169,11 @@ MolComponentImpl classSide >> breakOnceOnComponentRemove [
]

{ #category : #'*Molecule-IDE' }
MolComponentImpl >> inspectionComponent [
MolComponentImpl >> inspectionComponent: aBuilder [

<inspectorPresentationOrder: 830 title: 'Component'>

^ SpRoassalInspectorPresenter new
^ (aBuilder instantiate: SpRoassalInspectorPresenter)
canvas: (MolComponentToRoassal canvasFromSingleComponent: self);
yourself
]
Expand Down
4 changes: 2 additions & 2 deletions src/Molecule-IDE/MolHomeServices.extension.st
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Extension { #name : #MolHomeServices }

{ #category : #'*Molecule-IDE' }
MolHomeServices >> inspectionDeployedComponentsGraph [
MolHomeServices >> inspectionDeployedComponentsGraph: aBuilder [

<inspectorPresentationOrder: 1000 title: 'Deployed Components Graph'>
| canvas components |
Expand All @@ -10,7 +10,7 @@ MolHomeServices >> inspectionDeployedComponentsGraph [
canvas := MolComponentToRoassal canvasFromMultipleComponents:
components.

^ SpRoassalInspectorPresenter new
^ (aBuilder instantiate: SpRoassalInspectorPresenter)
canvas: canvas;
yourself
]
Expand Down