fix Window.CursorVisible intial value (was false)

This commit is contained in:
faiface 2017-04-30 20:42:25 +02:00
parent ce6b0a47c5
commit 2c1528a927
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ func NewWindow(cfg WindowConfig) (*Window, error) {
false: glfw.False,
}
w := &Window{bounds: cfg.Bounds}
w := &Window{bounds: cfg.Bounds, cursorVisible: true}
err := mainthread.CallErr(func() error {
var err error