Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.8.0
Description
Looks like Qt.ApplicationModal is not making FileDialog modal. If we click outside of the fileDialog, then clicking should not be allowed. Or at least fileDialog should be closed.
Following little code seems to be working on Windows but not On Linux.
ApplicationWindow { visible: true width: 600 height: 200 title: "FileDialog" FileDialog { id: fd modality: Qt.ApplicationModal fileMode: FileDialog.SaveFile } Button { anchors.left: parent.left text: "sample" } Button { anchors.centerIn: parent text: "Click" onClicked: { fd.open() } } }