Skip to content

Commit

Permalink
fixed ToInnerBarElement>>configureLayoutIn:
Browse files Browse the repository at this point in the history
  • Loading branch information
plantec committed Dec 19, 2024
1 parent 4bbc3af commit d4faf38
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions src/Toplo-Widget-List/ToInnerBarElement.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -62,26 +62,21 @@ ToInnerBarElement >> configureLayoutIn: aBarElement [
ifTrue: [
aBarElement isVertical
ifTrue: [
aBarElement isUniformNodeWidth
aBarElement isHMatchParent
ifTrue: [ self hMatchParent ]
ifFalse: [
aBarElement isHMatchParent
ifTrue: [ self hMatchParent ]
ifFalse: [ self hFitContent ] ] ]
ifFalse: [ self hFitContent ] ]
ifFalse: [
aBarElement isUniformNodeHeight
aBarElement isVMatchParent
ifTrue: [ self vMatchParent ]
ifFalse: [
aBarElement isVMatchParent
ifTrue: [ self vMatchParent ]
ifFalse: [ self vFitContent ] ] ] ]
ifFalse: [ self vFitContent ] ] ]
ifFalse: [
aBarElement isHMatchParent
ifTrue: [ self hMatchParent ]
ifFalse: [ self hFitContent ].
aBarElement isVMatchParent
ifTrue: [ self vMatchParent ]
ifFalse: [ self vFitContent ] ].

trackElement configureLayoutIn: aBarElement
]

Expand Down

0 comments on commit d4faf38

Please sign in to comment.