So I am using this code block to create a file dialog which allows the user to 
select multiple files.
    
    
    import wNim/wFileDialog
    var fd = FileDialog(style=wFdOpen or wFdMultiple or wFdFileMustExist)
    echo fd.display()
    
    
    Run

Selecting a single file works fine but whe using `wFdMultiple` causes the 
function to return an empty sequence.

Am I doing something wrong when using the function or is it something else?

Reply via email to