mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix spurious error due to resume after configure event no longer being used
This commit is contained in:
parent
631c618503
commit
00ec5eb9fb
@ -36,7 +36,8 @@ class TTS(QObject):
|
||||
self.manager.speak_simple_text(text)
|
||||
|
||||
def action(self, action, data):
|
||||
getattr(self, action)(data)
|
||||
if action != 'resume_after_configure': # resume_after_configure is not used in new tts backend
|
||||
getattr(self, action)(data)
|
||||
|
||||
def play(self, data):
|
||||
set_sync_override(False)
|
||||
|
Loading…
x
Reference in New Issue
Block a user