Skip to content

Commit

Permalink
Move Seaside control panel to a separate top-level Seaside menu (read…
Browse files Browse the repository at this point in the history
…y for more to come)
  • Loading branch information
jbrichau committed Oct 25, 2024
1 parent 61c22a4 commit d2b3dd7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
world menu
menuCommandOn: aBuilder
controlPanelMenuCommandOn: aBuilder
<worldMenu>
self registerIcons.

(aBuilder item: #ServerAdapterBrowser)
order: 0.21;
parent: #Tools;
order: 1;
parent: #Seaside;
label: 'Seaside Control Panel';
icon: (self iconNamed: #adaptorRunningIcon);
action: [ self open ]
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
world menu
seasideMenuCommandOn: builder
<worldMenu>

(builder item: #Seaside)
target: self;
order: 1.4

0 comments on commit d2b3dd7

Please sign in to comment.