Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P1: Critical
-
Resolution: Done
-
Affects Version/s: 5.2.0 Beta1
-
Fix Version/s: 5.3.0 Beta1
-
Component/s: (Inactive) QtPorts: BB10
-
Labels:
-
Environment:Blackberry Z10, Software: 10.2.1.176, Qt5.2.0 Beta1(built with NDK 10.1)
-
Commits:7591abbe0402d7fcb6305728c1456c1e148d1c40
Description
Example Code:
import QtQuick 2.0
import QtQuick.Dialogs 1.0
Rectangle {
width: 200
height: 200
FileDialog {
id: fileDialog
title: "MyTitle"
selectFolder: false
selectMultiple: false
onAccepted:
}
MouseArea
}
First Bug: Filedialog only opens once on my Z10. So if I close the dialog,
it doesn't open again
Second Bug: Filedialog doesn't return anything -> console.log is empty
Third Bug: If I set selectFolder to true, I still can only choose files
Forth Bug: If I set selectMultiple to true, I still can only choose 1 file
greets