diff options
Diffstat (limited to 'stack.go')
| -rw-r--r-- | stack.go | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -77,7 +77,7 @@ func (s *Stack) make(window *sysData) error { return nil } -func (s *Stack) setRect(x int, y int, width int, height int, winheight int) error { +func (s *Stack) setRect(x int, y int, width int, height int) (rr []resizerequest) { var stretchywid, stretchyht int if len(s.controls) == 0 { // do nothing if there's nothing to do @@ -120,17 +120,14 @@ func (s *Stack) setRect(x int, y int, width int, height int, winheight int) erro } // 3) now actually place controls for i, c := range s.controls { - err := c.setRect(x, y, s.width[i], s.height[i], winheight) - if err != nil { - return fmt.Errorf("error setting size of control %d in Stack.setRect(): %v", i, err) - } + rr = append(rr, c.setRect(x, y, s.width[i], s.height[i])...) if s.orientation == horizontal { x += s.width[i] } else { y += s.height[i] } } - return nil + return rr } // The preferred size of a Stack is the sum of the preferred sizes of non-stretchy controls + (the number of stretchy controls * the largest preferred size among all stretchy controls). |
