Skip to content
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

Use add_pattern for new dialog's FileFilters #3828

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

TomChapple
Copy link
Contributor

@TomChapple TomChapple commented Mar 30, 2025

Description

This attempts to fix the issue described in #3154 that—although was previously resolved in #3221—has seemingly been reintroduced after the new UI for creating bottles was added.

For context, certain distributions have issues with file choosing dialogs where file types are missing or not correctly handled. This sometimes results in no file types being valid and all file choices becoming invalid. As an example, my main PC correctly shows "YAML" and "All Files" as file type options, but my Steam Deck only shows "YAML documents" (which was not even specified as a name); the former is the most accurate to what the codebase intends. This most noticeable when picking a YAML file for a custom bottle.

The solution proposed here is very similar to the one in #3221: replace the use of filter.add_mime_type with filter.add_pattern. It is not ideal as I recognise the benefit of using the media type, but I believe it is best to ensure consistency until the root cause can be addressed.

Fixes #3154

Type of change

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • This change requires a documentation update

How Has This Been Tested?

Warning

I have not done any testing yet! Neither my main PC nor my Steam Deck will let me build this Flatpak, instead resulting in permission denied errors at the very end. I felt it was valuable to provide this implementation early whilst I resolve this in the background.

If anyone feels comfortable validating this in the mean time, I would greatly appreciate it.

Perform and validate the following steps on each of the following:

  • Steam Deck
  • Ubuntu
  1. Start Bottles and create a new bottle.
  2. Choose a custom configuration and proceed to the file dialog for choosing a YAML file.
  3. Observe that the list of filters include "YAML" and "All Files".

This addresses an issue originally fixed in bottlesdevs#3221 where the GTK function
`add_media_type` acted inconsistently across distributions. This was
reintroduced in later releases after the UI was updated for creating
bottles.

As was before, the `add_media_type` function would be the ideal one to
use, so this is in actuality a temporary fix.
This addresses code formatting issues discovered during the CI process
for this pull request. No functional changes are otherwise present.
@TomChapple
Copy link
Contributor Author

I see that I can use the package built during CI to verify this functionality! Awesome! I have verified it on my home machine and it continues to work as expected. I shall do a further test on my Steam Deck.

@TomChapple
Copy link
Contributor Author

I was able to install this on my Steam Deck and can validate the issue was resolved: I could see "YAML" and "All Files" as options to pick files rather than just "YAML document".

I no longer run Ubuntu, however, so any validation on other operating systems would be appreciated.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug]: Unable to find .yml files.
1 participant