Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Bloc-Serialization-STON/BlElement.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Extension { #name : #BlElement }
{ #category : #'*Bloc-Serialization-STON' }
BlElement class >> stonAllInstVarNames [

^ #( children constraints visuals userData layout eventDispatcher )
^ #( children constraints visuals userData layout )
]

{ #category : #'*Bloc-Serialization-STON' }
Expand Down
16 changes: 2 additions & 14 deletions src/Bloc-Serialization-Tests/BlocSerializationLayoutTests.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -536,18 +536,6 @@ BlocSerializationLayoutTests >> testBlLinearLayoutVerticalTest1 [
self assert: parent position equals: 0 @ 0 ]
]

{ #category : #tests }
BlocSerializationLayoutTests >> testBlLinearLayoutVerticalTest10 [

| origin |
origin := BlLinearLayoutVerticalTest new
testParentWithLinearHorizontalLayout.
self test: origin on: [ :element |
element forceLayout.
self assert: element layout class equals: BlLinearLayout.
self assert: element layout isVertical. ]
]

{ #category : #tests }
BlocSerializationLayoutTests >> testBlLinearLayoutVerticalTest2 [

Expand Down Expand Up @@ -667,11 +655,11 @@ BlocSerializationLayoutTests >> testBlLinearLayoutVerticalTest8 [
childC := parent childAt: 3.
parent forceLayout.
self assert: childA extent equals: 100 @ 100.
self assert: childA position equals: 400 @ 0.
self assert: childA position equals: 400 @ 200.
self assert: childB extent equals: 200 @ 100.
self assert: childB position equals: 150 @ 100.
self assert: childC extent equals: 50 @ 100.
self assert: childC position equals: 0 @ 200.
self assert: childC position equals: 0 @ 0.
self assert: parent extent equals: 500 @ 600.
self assert: parent position equals: 0 @ 0. ]
]
Expand Down