summaryrefslogtreecommitdiff
path: root/sysdata.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-02-15 13:07:46 -0500
committerPietro Gagliardi <[email protected]>2014-02-15 13:07:46 -0500
commit99feed762802516b74ab8b251cf376f3affa6cbb (patch)
tree72fdb7c0dd983ed4bf7c45e74b36d161737452cc /sysdata.go
parent32e70f64143b840292b4f763ede9585d792aaccb (diff)
Removed setting the initial width and height in sysData.make() (this gets rid of the dummy 300x300 sizes from the controls) and added an explicit sysData.setWindowSize() to Window.Open() to ensure everything's sized properly.
Diffstat (limited to 'sysdata.go')
-rw-r--r--sysdata.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdata.go b/sysdata.go
index 929c015..a49db08 100644
--- a/sysdata.go
+++ b/sysdata.go
@@ -12,7 +12,7 @@ type cSysData struct {
resize func(x int, y int, width int, height int) error
alternate bool // editable for Combobox, multi-select for listbox
}
-func (c *cSysData) make(initText string, initWidth int, initHeight int, window *sysData) error {
+func (c *cSysData) make(initText string, window *sysData) error {
panic(runtime.GOOS + " sysData does not define make()")
}
func (c *cSysData) show() error {