CleanConfirmMoveUp moves the selection up in the clean confirmation dialog.
()
| 380 | |
| 381 | // CleanConfirmMoveUp moves the selection up in the clean confirmation dialog. |
| 382 | func (p *PRDPicker) CleanConfirmMoveUp() { |
| 383 | if p.cleanConfirmation != nil && p.cleanConfirmation.SelectedIdx > 0 { |
| 384 | p.cleanConfirmation.SelectedIdx-- |
| 385 | } |
| 386 | } |
| 387 | |
| 388 | // CleanConfirmMoveDown moves the selection down in the clean confirmation dialog. |
| 389 | func (p *PRDPicker) CleanConfirmMoveDown() { |
no outgoing calls