-
Notifications
You must be signed in to change notification settings - Fork 14
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
Add filter to FileDialog Lbrary entry #4
Comments
Hi @sonnyp I would like to work on this issue. If you could assign me to it an provide an additional context you have that would be great. |
In Workbench Library, there is a entry named ""Open File" We should demonstrate the usage of filters so that only one type of file can be selected. HEre is an example const filter = Gtk.FileFilter.new();
filter.set_name("Text Files");
filter.add_mime_type("text/*");
const filters = new Gio.ListStore();
filters.append(filter);
const file_dialog = new Gtk.FileDialog({ filters }); |
Hey @sonnyp can you tell me the expected behavior of Open File cause it is showing error when i select open file |
ha yes - I'm aware of this bug might be a good idea to fix it first The problem is that in the Flatpak sandbox If you like you can send a PR that removes |
Removed initial_folder and default_folder. https://gist.github.com/Sahil-Shadwal/6d63af8c237bf069e4ed7af7026a5790 |
So, should i make PR first and get my code reviewed or after ? |
hey do i need to add more filters ? |
We should demonstrate the usage of filter in the Open File library entry
The text was updated successfully, but these errors were encountered: