FileDialog in Qml not working in Release
问题 I am working on project with Qt Quick Control 2 . When I try to run my software in debug mode FileDialog.qml opens perfectly but when I deploy it as release mode it doesn't work. Here is my code: import QtQuick 2.4 import QtQuick.Window 2.2 import QtQuick.Controls 1.3 import QtQuick.Dialogs 1.0 // File Dialog to browse FileDialog { id: openDialog title: "Please Select An Image" folder: shortcuts.pictures nameFilters: ["Image files (*.BMP)"] modality: Qt.NonModal selectExisting: true /* * do