Skip to content

Commit

Permalink
changed menu bug display and updated baseline
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexisCnockaert committed Jan 31, 2025
1 parent 7e2a2be commit cce8f0c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions src/BaselineOfNewTools/BaselineOfNewTools.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ BaselineOfNewTools >> baseline: spec [
group: 'Core' with: #( 'NewTools-Core' 'NewTools-Core-Tests' 'NewTools-Morphic' );
group: 'Playground' with: #( 'Core' 'NewTools-Playground' 'NewTools-Playground-Tests' );
group: 'Inspector' with: #( 'Core' 'NewTools-Inspector' 'NewTools-Inspector-Tests' );
group: 'ClosedWindows' with: #( 'Core' 'NewTools-WindowManager');
group: 'Debugger' with: #(
'Core'
'Inspector'
Expand Down Expand Up @@ -195,6 +196,7 @@ BaselineOfNewTools >> baseline: spec [
group: 'default' with: #(
'Playground'
'Inspector'
'ClosedWindows'
'CritiqueBrowser'
'Debugger'
'SystemReporter'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,12 @@ SpClosedWindowListPresenter class >> windowMenuOn: aBuilder [
SpClosedWindowListPresenter class >> windowsOn: aBuilder [

<worldMenu>
(aBuilder group: #Windows) with: [

(aBuilder item: #'Unclose window')
order: 90;
parent: #Windows;
order: 1;
action: [ self new open ];
help: 'Show last 5 closed Windows' ]
help: 'Show last 5 closed Windows'
]

{ #category : 'adding' }
Expand Down

0 comments on commit cce8f0c

Please sign in to comment.