There was an error while loading. Please reload this page.
1 parent 63d5d97 commit 7ce2c48Copy full SHA for 7ce2c48
1 file changed
src/Toplo/ToIntrinsicState.class.st
@@ -58,12 +58,12 @@ ToIntrinsicState >> checkedSkinEvent: aSkinEvent [
58
{ #category : #'private - accessing' }
59
ToIntrinsicState >> currentPatternOn: anElement [
60
61
- ^ Array new: 15 streamContents: [ :stream |
62
- stream nextPut: self enablementState.
63
- stream nextPut: (self focusStateOn: anElement).
64
- stream nextPut: self checkState.
65
- stream nextPut: self selectionState.
66
- stream nextPut: self otherSelectionsState ]
+ ^ {
+ self enablementState.
+ (self focusStateOn: anElement).
+ self checkState.
+ self selectionState.
+ self otherSelectionsState }
67
]
68
69
{ #category : #'skin dispatching' }
0 commit comments