Skip to content

Commit

Permalink
Merge pull request #4 from adri09070/master
Browse files Browse the repository at this point in the history
Moving Chest to the #Debug World menu
  • Loading branch information
adri09070 authored Feb 10, 2023
2 parents b6b1967 + 4bd5e14 commit fe5f04e
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions Chest/ChestPresenter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,17 @@ ChestPresenter class >> buildLoadItemCommandGroup: aChestWithContentPresenter fo
ChestPresenter class >> debugWorldMenuOn: aBuilder [

<worldMenu>
(aBuilder item: #'Open Chests')
parent: #Debugging;
order: 0;
help:
'Store objects from anywhere to keep them around, check equality...';
action: [ self open ];
icon: (Smalltalk ui icons iconNamed: #group)
(aBuilder group: #Chest)
parent: #Debug;
order: 10;
withSeparatorAfter;
with: [
(aBuilder item: #'Open Chests')
order: 1;
help:
'Store objects from anywhere to keep them around, check equality...';
action: [ self open ];
icon: (Smalltalk ui icons iconNamed: #group) ]
]

{ #category : #accessing }
Expand Down

0 comments on commit fe5f04e

Please sign in to comment.