From dc1a999991462b411bbcc820bd9e8d8140c4bcad Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Thu, 10 May 2018 14:50:23 +1000 Subject: [PATCH] don't try to use mpv on Windows some users had mpv lying around from previous installs, and the Windows implementation seems to hang with the idle hook introduced in the previous build --- aqt/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aqt/main.py b/aqt/main.py index b46f12139..a70840d25 100644 --- a/aqt/main.py +++ b/aqt/main.py @@ -308,6 +308,8 @@ close the profile or restart Anki.""")) ########################################################################## def setupSound(self): + if isWin: + return try: anki.sound.setupMPV() except FileNotFoundError: