rfd icon indicating copy to clipboard operation
rfd copied to clipboard

Rusty File Dialog

Results 86 rfd issues
Sort by recently updated
recently updated
newest added

*More details here: https://github.com/khvzak/mlua/issues/184* I'm trying to figure out a very strange interaction between `rfd` and `mlua` that breaks the latter in very subtle ways. This issue can only be...

Hi, Really great library, love it! I found a weird behavior that you can see on the screenshot: Here, I pressed `S` and the file dialog is in fact open....

https://github.com/bilelmoussaoui/ashpd/issues/40

needs more testing

To quote #77: > TD_WARNING_ICON / TD_ERROR_ICON / TD_INFORMATION_ICON are missing so I use hard code to workaround. This should be removed once https://github.com/microsoft/win32metadata/issues/968 is fixed and released

enhancement
help wanted
good first issue

Hello, The latest, 0.9.0 version of _rfd_ fails to build on Windows 11. I believe I'm building with 0.9.0 on a Linux system at home and there's no problem, I...

When a file is dragged from an open rfd dialog and dropped in a winit window the program crashes with the error: ``` (exit code: 0xc0000374, STATUS_HEAP_CORRUPTION) ```

https://github.com/PolyMeilex/rfd/blob/e331eff49a95b095e2e82750af114cf0c81c3dfd/src/backend/xdg_desktop_portal.rs#L199

error[E0277]: the trait bound `FileDialog: AsyncFilePickerDialogImpl` is not satisfied --> /data/data/com.termux/files/home/.cargo/registry/src/github.com-1ecc6299db9ec823/rfd-0.7.0/src/file_dialog.rs:205:52 | 205 | AsyncFilePickerDialogImpl::pick_file_async(self.file_dialog) | ------------------------------------------ ^^^^^^^^^^^^^^^^ the trait `AsyncFilePickerDialogImpl` is not implemented for `FileDialog` | | | required...

Gtk is a fallback for xdg portal anyway, we don't care about it much, so we can just replace it with CLI alternatives. Same for message dialogs. It would not...

On linux, the type FileHandle is Send and Sync. On wasm32 FileHandle is !Send and !Sync. It makes a little bit harder to do multiplatform code because a code that...