Skip to content

Commit

Permalink
hierarchy package check should be on selection
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Winger authored and Eric Winger committed Sep 10, 2018
1 parent 1e9bb55 commit 41b3d30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sources/JadeiteProjectsBrowserPresenter.cls
Original file line number Diff line number Diff line change
Expand Up @@ -1408,13 +1408,13 @@ updateCommand: aString onSuccessDo: aBlock
updateHierarchy
| service selection |
classHierarchyPresenter model: TreeModel new.
packageListPresenter list isEmpty ifTrue: [^self].
packageListPresenter selectionOrNil ifNil: [^self].
Cursor wait showWhile:
[service := classListPresenter selectionOrNil ifNil: [packageListPresenter selection].
service command: #classHierarchy.
self issueCommand: (Array with: service).
service isPackageService
ifTrue:[service hierarchyServices: Array new]
ifTrue: [service hierarchyServices: Array new]
ifFalse:
[service name = 'Object'
ifFalse:
Expand Down

0 comments on commit 41b3d30

Please sign in to comment.