You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now after creating a FileDialogOptions and showing it:
let options = FileDialogOptions::new().multi_selection(); ctx.submit_command(commands::SHOW_OPEN_PANEL.with(options))
it can only be handled with the cmd.get(commands::OPEN_FILE). I have implemented a case for cmd.get(commands::OPEN_FILES) in my AppDelegate, but couldn't find a way to call it.
The text was updated successfully, but these errors were encountered:
tested on mac: only commands::OPEN_FILE is triggered when selecting one or more files.
tested on windows: nothing gets triggered when selecting more than one file.
Right now after creating a FileDialogOptions and showing it:
let options = FileDialogOptions::new().multi_selection(); ctx.submit_command(commands::SHOW_OPEN_PANEL.with(options))
it can only be handled with the
cmd.get(commands::OPEN_FILE)
. I have implemented a case forcmd.get(commands::OPEN_FILES)
in my AppDelegate, but couldn't find a way to call it.The text was updated successfully, but these errors were encountered: