internal/ui: update comments

Updates #2763
This commit is contained in:
Hajime Hoshi 2023-09-17 14:59:41 +09:00
parent 8c25b07336
commit 0475baf9e2
2 changed files with 2 additions and 2 deletions

View File

@ -226,6 +226,6 @@ func UpdateInputFromEvent(e js.Value) {
}
func (u *userInterfaceImpl) updateInputState() error {
// TODO: Adjust cursor and touch positions based on the latest layout.
// TODO: Adjust cursor and touch positions based on the latest layout (#2763).
return nil
}

View File

@ -49,7 +49,7 @@ func (u *userInterfaceImpl) updateInputStateFromOutside(keys map[Key]struct{}, r
}
func (u *userInterfaceImpl) updateInputState() error {
// TODO: Adjust cursor and touch positions based on the latest layout.
// TODO: Adjust cursor and touch positions based on the latest layout (#2763).
return nil
}