diff --git a/crates/zed/src/zed.rs b/crates/zed/src/zed.rs index e93be8fd3f..7d3b5050a8 100644 --- a/crates/zed/src/zed.rs +++ b/crates/zed/src/zed.rs @@ -171,9 +171,9 @@ pub fn initialize_workspace(app_state: Arc, cx: &mut AppContext) { For troubleshooting see: https://zed.dev/docs/linux "#}, specs.device_name); let prompt = cx.prompt(PromptLevel::Critical, "Unsupported GPU", Some(&message), - &["Troubleshoot and Quit"]); + &["Skip", "Troubleshoot and Quit"]); cx.spawn(|_, mut cx| async move { - if prompt.await == Ok(0) { + if prompt.await == Ok(1) { cx.update(|cx| { cx.open_url("https://zed.dev/docs/linux#zed-fails-to-open-windows"); cx.quit();