diff --git a/src/pyj/read_book/read_aloud.pyj b/src/pyj/read_book/read_aloud.pyj index e458106cea..fb7ee465a5 100644 --- a/src/pyj/read_book/read_aloud.pyj +++ b/src/pyj/read_book/read_aloud.pyj @@ -233,6 +233,10 @@ class ReadAloud: self.send_message('mark', num=data) elif which is 'begin': self.state = PLAYING + elif which is 'pause': + self.state = PAUSED + elif which is 'resume': + self.state = PLAYING elif which is 'end': self.state = STOPPED self.view.show_next_spine_item()