diff options
Diffstat (limited to 'window.go')
| -rw-r--r-- | window.go | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -24,8 +24,10 @@ type Window struct { func NewWindow(title string) *Window { return &Window{ sysData: &sysData{ - ctype: c_window, - text: title, + cSysData: cSysData{ + ctype: c_window, + text: title, + }, }, } } |
