Fixed typo in area.go documentation.
This commit is contained in:
parent
e45a88d86a
commit
83e4f05592
2
area.go
2
area.go
|
@ -68,7 +68,7 @@ type AreaHandler interface {
|
||||||
// You are allowed to do nothing in this handler (to ignore keyboard events).
|
// You are allowed to do nothing in this handler (to ignore keyboard events).
|
||||||
// See KeyEvent for details.
|
// See KeyEvent for details.
|
||||||
// If repaint is true, the Area is marked as needing to be redrawn.
|
// If repaint is true, the Area is marked as needing to be redrawn.
|
||||||
// After handling the key event, package ui will decide whether to perform platform-dependent event chain continuation based on that platform's designated action (so it is not possible to override global key events, such as Alt-Tab this way).
|
// After handling the key event, package ui will decide whether to perform platform-dependent event chain continuation based on that platform's designated action (so it is not possible to override global key events, such as Alt-Tab, this way).
|
||||||
Key(e KeyEvent) (repaint bool)
|
Key(e KeyEvent) (repaint bool)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue