summaryrefslogtreecommitdiff
path: root/sysdata.go
diff options
context:
space:
mode:
Diffstat (limited to 'sysdata.go')
-rw-r--r--sysdata.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/sysdata.go b/sysdata.go
index 7f43a3e..1507912 100644
--- a/sysdata.go
+++ b/sysdata.go
@@ -87,3 +87,16 @@ type resizerequest struct {
width int
height int
}
+
+func (s *sysData) doResize(x int, y int, width int, height int, winheight int) {
+ if s.resize != nil {
+ s.resizes = s.resizes[0:0] // set len to 0 without changing cap
+ s.resize(x, y, width, height, &s.resizes)
+ for _, s := range s.resizes {
+ err := s.sysData.setRect(s.x, s.y, s.width, s.height, winheight)
+ if err != nil {
+ panic("child resize failed: " + err.Error())
+ }
+ }
+ }
+}