Skip to content

Commit

Permalink
BF: Sound.pause shouldn't seek to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
TEParsons committed Dec 8, 2022
1 parent 76e20de commit a161e13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psychopy/sound/backend_ptb.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ def pause(self):
"""Stop the sound but play will continue from here if needed
"""
self.status = PAUSED
self.track.stop()
self.track.stop(reset=False)

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

0 comments on commit a161e13

Please sign in to comment.