65b826d787
- on Linux and Windows, opening the browser and stats window back and forth multiple times triggers a crash in the GL libraries, even with software rendering enabled. Will try again when .1 is out - on Mac, shortcut keys fire multiple times: https://bugreports.qt.io/browse/QTBUG-65184
44 lines
1.2 KiB
Python
44 lines
1.2 KiB
Python
# Copyright: Damien Elmes <anki@ichi2.net>
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
# fixme: make sure not to optimize imports on this file
|
|
|
|
import sip
|
|
import os
|
|
|
|
# fix buggy ubuntu12.04 display of language selector
|
|
os.environ["LIBOVERLAY_SCROLLBAR"] = "0"
|
|
|
|
from anki.utils import isWin, isMac
|
|
|
|
from PyQt5.Qt import *
|
|
# trigger explicit message in case of missing libraries
|
|
# instead of silently failing to import
|
|
from PyQt5.QtWebEngineWidgets import QWebEnginePage
|
|
|
|
def debug():
|
|
from PyQt5.QtCore import pyqtRemoveInputHook
|
|
from pdb import set_trace
|
|
pyqtRemoveInputHook()
|
|
set_trace()
|
|
|
|
import sys, traceback
|
|
|
|
if os.environ.get("DEBUG"):
|
|
def info(type, value, tb):
|
|
from PyQt5.QtCore import pyqtRemoveInputHook
|
|
for line in traceback.format_exception(type, value, tb):
|
|
sys.stdout.write(line)
|
|
pyqtRemoveInputHook()
|
|
from pdb import pm
|
|
pm()
|
|
sys.excepthook = info
|
|
|
|
qtmajor = (QT_VERSION & 0xff0000) >> 16
|
|
qtminor = (QT_VERSION & 0x00ff00) >> 8
|
|
qtpoint = QT_VERSION & 0xff
|
|
|
|
if qtmajor < 5 or (qtmajor == 5 and qtminor < 9):
|
|
raise Exception("Anki requires Qt 5.9.0+")
|
|
if qtmajor == 5 and qtminor == 10:
|
|
raise Exception("Qt 5.10 is known to be buggy.") |