This commit is contained in:
Kovid Goyal 2024-09-03 19:05:33 +05:30
parent 676f5323a6
commit 9c559666cd
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -123,7 +123,7 @@ class TTSManager(QObject):
def emit_state_event(self, event: str) -> None:
if self._resuming_after_configure:
if event == 'cancel':
if event in ('resume', 'cancel'):
self.state_event.emit(event)
self._resuming_after_configure = False
elif event == 'begin':