Skip to content

Commit

Permalink
Merge 024ee43
Browse files Browse the repository at this point in the history
  • Loading branch information
JurajKubelka committed Aug 21, 2024
2 parents 9f8b8b7 + 024ee43 commit d763dab
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/GToolkit-Inspector/AbstractFileReference.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,15 @@ AbstractFileReference >> gtContentsFor: aView [
stencil: [ self gtEditorView ]
]

{ #category : #'*GToolkit-Inspector' }
AbstractFileReference >> gtDefaultInspectorTool [
^ (self exists and: [ self isDirectory ])
ifTrue: [ GtPhlowCompositeTool new
addTool: super gtDefaultInspectorTool;
addTool: (GtFileBrowserFolderTool forFolder: self) ]
ifFalse: [ super gtDefaultInspectorTool ]
]

{ #category : #'*GToolkit-Inspector' }
AbstractFileReference >> gtDetails [
| details |
Expand Down
5 changes: 5 additions & 0 deletions src/GToolkit-Inspector/GtInspector.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,11 @@ GtInspector >> playgroundPageStrategy: aPlaygroundPageStrategy [
self updatePlaygroundPageStrategy.
]

{ #category : #'as yet unclassified' }
GtInspector >> removePlayground [
self removeChild: self playgroundElement
]

{ #category : #selection }
GtInspector >> selectTabWithIdentifier: aTabIdentifier [
aTabIdentifier applySelectionTo: self
Expand Down

0 comments on commit d763dab

Please sign in to comment.