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
Problem
I encountered two issues with the file dialog in the desktop platform on Linux:
When I first open the dialog, I can see folders but not files. Files only appear after I have gone back and forth a few times between different folders. It seems like navigating from a folder to its parent is what finally causes files to appear.
After I select a file, the text next to the "Choose File" button still says "no file selected".
Steps To Reproduce
Steps to reproduce the behavior:
Create an app that has an input { type: "file" }.
Enable the "desktop" feature of dioxus.
cargo run on Linux.
Click the Choose File button.
After moving back and forth between folders until files appear, select a file and click OK.
Environment:
Dioxus version: 0.6.1
Rust version: 1.83.0
OS info: Void Linux with Xfce 4.20
App platform: desktop
The text was updated successfully, but these errors were encountered:
I think the first issue arises because zenity is run with the option "--file-filter name", which means that it is being asked to show only files named "name". I have not yet figured out how Dioxus calls zenity.
Problem
I encountered two issues with the file dialog in the desktop platform on Linux:
Steps To Reproduce
Steps to reproduce the behavior:
input { type: "file" }
.cargo run
on Linux.Environment:
The text was updated successfully, but these errors were encountered: