Skip to content

Commit

Permalink
Merge pull request #12782 from jecisc/fix-wantsSteps-deprecated-calls
Browse files Browse the repository at this point in the history
FIx #wantsSteps deprecated calls
  • Loading branch information
MarcusDenker authored Feb 16, 2023
2 parents a08bcc1 + 7adeab4 commit c79b24d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/Morphic-Widgets-Windows/SystemWindow.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -1956,7 +1956,13 @@ SystemWindow >> wantsHalo [
SystemWindow >> wantsSteps [
"Return true if the model wants its view to be stepped. For an open system window, we give the model to offer an opinion"

^ isCollapsed not and: [ model isNotNil and: [ model wantsSteps ] ]
isCollapsed ifTrue: [ ^ false ].

model ifNil: [ ^ false ].

model isCollection ifTrue: [ ^ false ].

^ model wantsSteps
]

{ #category : #stepping }
Expand Down

0 comments on commit c79b24d

Please sign in to comment.