mplayer closing is handled in deck close now

This commit is contained in:
Damien Elmes 2010-12-28 03:49:31 +09:00
parent 7054281bb8
commit 1de1c7c816

View file

@ -188,14 +188,5 @@ def run():
app.exec_()
if sys.platform.startswith("darwin"):
# buggy on osx
from anki.sound import stopMplayer
stopMplayer()
os._exit(0)
else:
# ensure we kill any other threads
sys.exit(0)
if __name__ == "__main__":
run()