ui: Bug fix: initCursorVisible must be true by default

This commit is contained in:
Hajime Hoshi 2017-08-12 18:32:51 +09:00
parent 783e57d3f2
commit 5f538bff82

View File

@ -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{})
)