Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
None
-
6.5.1
-
None
-
Qt 6.5.1
macOS 13.4.1
Description
The following warning/error appears in application output as soon as FileDialog is opened
2023-07-12 14:52:10.030 appTextEditBrokenWrap[79777:15574475] +[CATransaction synchronize] called within transaction
Run in Qt Creator, press the button, observe app output
import QtQuick import QtQuick.Controls import QtQuick.Dialogs import QtQuick.Window Window { id: window width: 640 height: 480 visible: true Button { x: 20; y: 20 text: "Open" onClicked: fileDialog.open() } FileDialog { id: fileDialog fileMode: FileDialog.OpenFile } }