Details
-
Bug
-
Resolution: Duplicate
-
P2: Important
-
None
-
5.12.0, 5.12.1
-
None
-
Windows 10 Pro, 64 GB Ram
-
-
e738f1a37 (dev)
Description
Every time I am executing the command to go fullscreen Python 3.72 crashes. I also tried with 3.6 and receive similar result.
There seems to be a bug with fullScreenRequested . It crashes after the request.accept()
from PySide2.QtWidgets import QApplication from PySide2.QtWebEngineWidgets import QWebEngineView from PySide2.QtCore import QUrl from PySide2.QtWebEngineWidgets import QWebEngineSettings app = QApplication([]) view = QWebEngineView() view.settings().setAttribute(QWebEngineSettings.FullScreenSupportEnabled, True) view.page().fullScreenRequested.connect(lambda request: request.accept()) view.load(QUrl("https://youtube.com")) view.show() app.exec_()
Attachments
Issue Links
- duplicates
-
PYSIDE-1768 QWebEngineFullScreenRequest of PySide6 cannot work
- Closed
- relates to
-
QTBUG-55064 Not possible to accept QWebEngineFullScreenRequest asynchronously
- Closed