feat: waveform playhead during audition + docs (v1.5)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-07-02 17:27:37 +02:00
co-authored by Claude Opus 4.8
parent 356cfcc7d7
commit 449b3dfa72
3 changed files with 34 additions and 1 deletions
+7
View File
@@ -467,6 +467,13 @@ def test_audition_button_present_and_safe(win):
assert win._audition_proc is None
def test_audition_clears_waveform_playhead(win):
win._wave.set_playhead(5.0)
win._stop_audition()
assert win._wave._playhead is None
assert not win._audition_playhead_timer.isActive()
def test_merge_list_add_remove_reorder(win, tmp_path):
from PyQt6.QtCore import Qt
a = tmp_path / "a.wav"; b = tmp_path / "b.wav"