mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
ui: Bug fix: initCursorVisible must be true by default
This commit is contained in:
parent
783e57d3f2
commit
5f538bff82
@ -51,9 +51,10 @@ type userInterface struct {
|
||||
|
||||
var (
|
||||
currentUI = &userInterface{
|
||||
sizeChanged: true,
|
||||
origPosX: -1,
|
||||
origPosY: -1,
|
||||
sizeChanged: true,
|
||||
origPosX: -1,
|
||||
origPosY: -1,
|
||||
initCursorVisible: true,
|
||||
}
|
||||
currentUIInitialized = make(chan struct{})
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user