MoveDown moves the selection down.
()
| 91 | |
| 92 | // MoveDown moves the selection down. |
| 93 | func (s *SettingsOverlay) MoveDown() { |
| 94 | if s.selectedIndex < len(s.items)-1 { |
| 95 | s.selectedIndex++ |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | // IsEditing returns true if a string value is being edited. |
| 100 | func (s *SettingsOverlay) IsEditing() bool { |
no outgoing calls