focusNext moves the focus onto the next item
()
| 525 | |
| 526 | // focusNext moves the focus onto the next item |
| 527 | func (wb *WidgetBase) focusNext() { |
| 528 | em := wb.Events() |
| 529 | if em != nil { |
| 530 | em.focusNext() |
| 531 | } |
| 532 | } |
| 533 | |
| 534 | // focusPrev moves the focus onto the previous item |
| 535 | func (wb *WidgetBase) focusPrev() { |