- 
    Bug 
- 
    Resolution: Unresolved
- 
    P2: Important 
- 
    None
- 
    5.4.2
- 
    Mac Yosemite Fully updated with Qt 5.4.2
I simply create a QML FileDialog with a simple nameFilters.
No issue/crash on Linux/Windows/Android.
On Mac I have a instant crash.
 FileDialog {
        id: fileDialog
        visible: false
        selectExisting: true
        selectMultiple: false
        selectFolder: false
        title: "Select a Image"
        nameFilters: [ "Image files (*.png *.jpg *.bmp *.gif *.jpeg *.ico *.tif)" ]
    }
When nameFilters is disabled, the code run perfectly.