mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-31 04:54:24 +00:00
agent_ui: Do not show Codex wsl warning on wsl take 2 (#42096)
https://github.com/zed-industries/zed/pull/42079#discussion_r2498472887 Release Notes: - N/A *or* Added/Fixed/Improved ...
This commit is contained in:
parent
a951e414d8
commit
f08068680d
2 changed files with 1 additions and 10 deletions
|
|
@ -5769,12 +5769,7 @@ impl Render for AcpThreadView {
|
|||
})
|
||||
.children(self.render_thread_retry_status_callout(window, cx))
|
||||
.children({
|
||||
if self
|
||||
.project
|
||||
.read(cx)
|
||||
.remote_connection_options(cx)
|
||||
.is_some_and(|it| it.is_wsl())
|
||||
{
|
||||
if cfg!(windows) && self.project.read(cx).is_local() {
|
||||
self.render_codex_windows_warning(cx)
|
||||
} else {
|
||||
None
|
||||
|
|
|
|||
|
|
@ -1077,10 +1077,6 @@ impl RemoteConnectionOptions {
|
|||
RemoteConnectionOptions::Wsl(opts) => opts.distro_name.clone(),
|
||||
}
|
||||
}
|
||||
|
||||
pub fn is_wsl(&self) -> bool {
|
||||
matches!(self, RemoteConnectionOptions::Wsl(_))
|
||||
}
|
||||
}
|
||||
|
||||
impl From<SshConnectionOptions> for RemoteConnectionOptions {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue