Skip to content

Commit

Permalink
Merge pull request #892 from gucio321/split-layout-h-fix
Browse files Browse the repository at this point in the history
fix(SplitLayout): height of 2nd child in V-split
  • Loading branch information
gucio321 authored Oct 26, 2024
2 parents b211d47 + 158ae8e commit cdbcd33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SplitLayout.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func (s *SplitLayoutWidget) Build() {

layout = Layout{
Row(
s.buildChild(*s.sashPos, 0, s.layout1),
s.buildChild(*s.sashPos, Auto, s.layout1),
Splitter(DirectionVertical, &(splitLayoutState.delta)).Size(s.originItemSpacingX, 0),
s.buildChild(Auto, Auto, s.layout2),
),
Expand Down

0 comments on commit cdbcd33

Please sign in to comment.