Skip to content

Commit

Permalink
Merge pull request #345 from MarcusDenker/Fix-spotterLabel
Browse files Browse the repository at this point in the history
Fix-spotterLabel
  • Loading branch information
estebanlm authored Feb 28, 2022
2 parents f1d2d41 + f8b8d3b commit 6dc4b22
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/NewTools-Spotter-Extensions/SettingNode.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,11 @@ SettingNode >> spotterForSettingsFor: aStep [
itemName: [ :each | each spotterLabel ];
filter: StFilterSubstring
]

{ #category : #'*NewTools-Spotter-Extensions' }
SettingNode >> spotterLabel [

| label |
label := self settingDeclaration label.
^ self parentNode ifNil: [ label ] ifNotNil: [ self parentNode spotterLabel , '/' , label ]
]

0 comments on commit 6dc4b22

Please sign in to comment.