We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a249ae3 commit 9932d35Copy full SHA for 9932d35
1 file changed
src/mime_app.rs
@@ -174,10 +174,6 @@ pub struct MimeApp {
174
pub exec: Option<String>,
175
pub icon: widget::icon::Handle,
176
pub is_default: bool,
177
-
178
- // NEW: needed to understand if an app is a good candidate to open archive files
179
- pub categories: Vec<String>,
180
- pub no_display: bool,
181
}
182
183
impl MimeApp {
@@ -209,8 +205,6 @@ impl From<&desktop::DesktopEntryData> for MimeApp {
209
205
desktop::fde::IconSource::Path(path) => widget::icon::from_path(path.clone()),
210
206
},
211
207
is_default: false,
212
- categories: app.categories.clone(),
213
- no_display: app.terminal,
214
208
215
216
0 commit comments