internal/uidriver/js: Bug fix: CursorPosition crashed before the main loop on browsers

Closes #1559
This commit is contained in:
Hajime Hoshi 2021-04-07 03:05:57 +09:00
parent 29cb3dceb5
commit 75b0e91228

View File

@ -52,6 +52,9 @@ type Input struct {
}
func (i *Input) CursorPosition() (x, y int) {
if i.ui.context == nil {
return 0, 0
}
xf, yf := i.ui.context.AdjustPosition(float64(i.cursorX), float64(i.cursorY))
return int(xf), int(yf)
}