SetSize sets the spinner dimensions.
(width, height int)
| 77 | |
| 78 | // SetSize sets the spinner dimensions. |
| 79 | func (w *WorktreeSpinner) SetSize(width, height int) { |
| 80 | w.width = width |
| 81 | w.height = height |
| 82 | } |
| 83 | |
| 84 | // AdvanceStep marks the current step as complete and moves to the next. |
| 85 | func (w *WorktreeSpinner) AdvanceStep() { |
no outgoing calls