Merge pull request #1606 from pop-os/fix-gvfs-feature

Fix compilation when gvfs feature not enabled
This commit is contained in:
Jeremy Soller 2026-02-10 11:06:03 -07:00 committed by GitHub
commit d668d04e12
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -40,7 +40,6 @@ use cosmic::{
menu::{action::MenuAction, key_bind::KeyBind}, menu::{action::MenuAction, key_bind::KeyBind},
}, },
}; };
use gio::prelude::FileExt;
use i18n_embed::LanguageLoader; use i18n_embed::LanguageLoader;
use icu::{ use icu::{
datetime::{ datetime::{
@ -677,7 +676,8 @@ fn display_name_for_file(path: &Path, name: &str, get_from_gvfs: bool, is_deskto
#[cfg(feature = "gvfs")] #[cfg(feature = "gvfs")]
{ {
let file = gio::File::for_path(path); let file = gio::File::for_path(path);
if let Ok(info) = file.query_info( if let Ok(info) = gio::prelude::FileExt::query_info(
&file,
"standard::display-name", "standard::display-name",
gio::FileQueryInfoFlags::NONE, gio::FileQueryInfoFlags::NONE,
gio::Cancellable::NONE, gio::Cancellable::NONE,
@ -2461,7 +2461,8 @@ impl Item {
if let Some(path) = self.path_opt() { if let Some(path) = self.path_opt() {
if self.selected { if self.selected {
column = column.push( column = column.push(
widget::button::standard(fl!("open")).on_press(Message::Open(Some(path.clone()))), widget::button::standard(fl!("open"))
.on_press(Message::Open(Some(path.clone()))),
); );
} }
} }