CleanConfirmMoveDown moves the selection down in the clean confirmation dialog.
()
| 387 | |
| 388 | // CleanConfirmMoveDown moves the selection down in the clean confirmation dialog. |
| 389 | func (p *PRDPicker) CleanConfirmMoveDown() { |
| 390 | if p.cleanConfirmation != nil && p.cleanConfirmation.SelectedIdx < 2 { |
| 391 | p.cleanConfirmation.SelectedIdx++ |
| 392 | } |
| 393 | } |
| 394 | |
| 395 | // GetCleanOption returns the selected clean option. |
| 396 | func (p *PRDPicker) GetCleanOption() CleanOption { |
no outgoing calls