-
Notifications
You must be signed in to change notification settings - Fork 570
Windows: file open dialog multiselect fix #2332
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
xStrom
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for taking this on. For now I have just a few minor notes. I'll do a deeper review later.
| - X11: window focus events ([#1938] by [@Maan2003] | ||
| - Preserve the aspect ratio of a clipped region in an Image ([#2195] by [@barsae]) | ||
| - GTK: Hot state now properly resets when the mouse leaves the window via an occluded part. ([#2324] by [@xStrom]) | ||
| - Windows: generate `commands::OPEN_FILES` when using multiselect in file open dialog. ([#2332] by [@ppykalo]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately the links aren't autogenerated. Please manually define [#2332] at the bottom of the file.
| path: os_str.into(), | ||
| .map(|s| FileInfo { | ||
| // `get_file_dialog_path` guarantees that save dialogs | ||
| // only return on path |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| // only return on path | |
| // only return one path |
Using multi selection option for
SHOW_OPEN_PANELcommand on Windows correctly generatescommands::OPEN_FILESnow. Previouslycommands::OPEN_PANEL_CANCELLEDwas generated when more than one file was selected.