From a6f0d898cead85baac427247304a8f909d092013 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 15 Aug 2025 11:27:33 -0600 Subject: [PATCH] Support drag and drop to gvfs drives, fixes #1140 --- src/tab.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/tab.rs b/src/tab.rs index 005cf45..edbd2b5 100644 --- a/src/tab.rs +++ b/src/tab.rs @@ -3853,7 +3853,9 @@ impl Tab { Message::Drop(Some((to, mut from))) => { self.dnd_hovered = None; match to { - Location::Desktop(to, ..) | Location::Path(to) => { + Location::Desktop(to, ..) + | Location::Path(to) + | Location::Network(_, _, Some(to)) => { if let Ok(entries) = fs::read_dir(&to) { for i in entries.into_iter().filter_map(|e| e.ok()) { let i = i.path();