Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
5.12.0, 5.13.2, 5.14.1
-
Mac OS
Description
Can be reproduced by the following example:
1) Press window to open FolderDialog
2) Select "Open"
3) Repeating step 1 will cause the UI to hang
Note that this only happens if you explicitly change the folder. It can be set to anything, even an empty string and it will still trigger the issue.
import QtQuick 2.13 import Qt.labs.platform 1.0 import QtQuick.Window 2.12 Window { visible: true FolderDialog { id: folderDialog } MouseArea { anchors.fill: parent onClicked: { folderDialog.folder = "couldBeAnything"; folderDialog.open(); } } }