We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
long story to short, enable_shadow of PyWindow set to False
The text was updated successfully, but these errors were encountered:
Thank you ! I met the same problem QWebEngineView run slow in PyDracula, your answer works .
Just Change the QWebEngine grphic effect(not use the parent's shadow), and disable it. It performs both PyOneDark and PyDracula
# DROP SHADOW in PyDracula self.shadow = QGraphicsDropShadowEffect(self) self.shadow.setBlurRadius(17) self.shadow.setXOffset(0) self.shadow.setYOffset(0) self.shadow.setColor(QColor(0, 0, 0, 150)) self.ui.bgApp.setGraphicsEffect(self.shadow) self.ui.webEngineView.setGraphicsEffect(self.shadow) self.ui.webEngineView.graphicsEffect().setEnabled(False)
Sorry, something went wrong.
No branches or pull requests
long story to short,
enable_shadow of PyWindow set to False
The text was updated successfully, but these errors were encountered: