fix Window.CursorVisible intial value (was false)
This commit is contained in:
parent
ce6b0a47c5
commit
2c1528a927
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue