From 2153c833b67de7e032ff135cdb322bb4e49d2bd1 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Tue, 7 Oct 2025 14:12:11 -0400 Subject: [WARP] Implicitly make newly added network sources writable This fixes an issue where the commit dialog would not fill in the newly added network source --- plugins/warp/src/container/network.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'plugins/warp/src') diff --git a/plugins/warp/src/container/network.rs b/plugins/warp/src/container/network.rs index db935a5e..9630d832 100644 --- a/plugins/warp/src/container/network.rs +++ b/plugins/warp/src/container/network.rs @@ -251,6 +251,8 @@ impl Container for NetworkContainer { .map_err(|_| CannotCreateSource(path))?; // Must probe the source before attempting to access it, as it does not exist locally. self.probe_source(source); + // Adding a source inherently makes it writable, so we add it to the set of writable sources. + self.writable_sources.insert(source); Ok(source) } -- cgit v1.3.1