Skip to content
Closed
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
10 changes: 10 additions & 0 deletions src/GToolkit-Coder/GtPackageCoderElement.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ GtPackageCoderElement >> buildClassesAndTagsTabs [
look: BrGlamorousTabLook new;
label: 'Classes';
stencil: [ packageCoder classesCoder asElement ]).
tabGroup addTab: (BrTab new
look: BrGlamorousTabLook new;
label: 'Comment';
stencil: [
| v |
v := GtPhlowView empty on: ManifestBloc perform: #gtCoderCommentsFor:.
ManifestBloc gtActions do: [ :eachAction |
(eachAction target isForViewDefinedIn: #gtCoderCommentsFor:) ifTrue: [
v addPhlowAction: eachAction ] ].
v asElement ]).
tabGroup addTab: (BrTab new
look: BrGlamorousTabLook new;
label: 'Tags';
Expand Down