Skip to content

Commit a161e13

Browse files
committed
BF: Sound.pause shouldn't seek to 0
1 parent 76e20de commit a161e13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

psychopy/sound/backend_ptb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ def pause(self):
536536
"""Stop the sound but play will continue from here if needed
537537
"""
538538
self.status = PAUSED
539-
self.track.stop()
539+
self.track.stop(reset=False)
540540

541541
def stop(self, reset=True, log=True):
542542
"""Stop the sound and return to beginning

0 commit comments

Comments
 (0)