| Summary: | Open with dialog with invalid supported files | ||
|---|---|---|---|
| Product: | [Applications] kdialog | Reporter: | Ivan Korniux <main> |
| Component: | general | Assignee: | Brad Hards <bradh> |
| Status: | RESOLVED DOWNSTREAM | ||
| Severity: | normal | CC: | kde |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Manjaro | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | Screenshot | ||
|
Description
Ivan Korniux
2019-09-25 04:19:48 UTC
According to Chromium source code this looks intentional:
// Add the *.* filter, but only if we have added other filters (otherwise it
// is implied). It needs to be added last to avoid being picked as the default
// filter.
if (file_types_.include_all_files && !file_types_.extensions.empty()) {
DCHECK(filter_set.find("application/octet-stream") == filter_set.end());
filter_vector.push_back("application/octet-stream");
}
|