-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
6.9.1
Test code:
import QtQuick import QtWebEngine import QtQuick.Controls Window { width: 200 height: 100 visible: true WebEngineView { id: view anchors.fill: parent url: "https://www.qt.io" } Row { Button { icon.source: view.icon icon.width: 50 icon.height: 50 width: 50 height: 50 } Image { source: view.icon width: 50 height: 50 } } }
This results in the Button and the Image showing different images, despite pulling from the same source. In this case the white Qt text is missing from the icon altogether.
Attempting to upscale both shows the inconsistency persists no matter how large they are.
Note: This works on Linux, might be a timing issue.