| 139 | } |
| 140 | |
| 141 | void AudioStreamEditor::_stop() { |
| 142 | _player->stop(); |
| 143 | _play_button->set_button_icon(get_editor_theme_icon(SNAME("MainPlay"))); |
| 144 | _current = 0; |
| 145 | _indicator->queue_redraw(); |
| 146 | set_process(false); |
| 147 | } |
| 148 | |
| 149 | void AudioStreamEditor::_on_finished() { |
| 150 | _play_button->set_button_icon(get_editor_theme_icon(SNAME("MainPlay"))); |
nothing calls this directly
no test coverage detected