From 5898fa61fb711571bb626798afce1923a937702b Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Thu, 15 Sep 2022 16:03:38 +0200 Subject: [PATCH] Temporarily disable status item so that we can merge to `main` --- crates/zed/src/main.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/zed/src/main.rs b/crates/zed/src/main.rs index f9e04782ab..3bfd5e6e1a 100644 --- a/crates/zed/src/main.rs +++ b/crates/zed/src/main.rs @@ -14,7 +14,6 @@ use client::{ http::{self, HttpClient}, UserStore, ZED_SECRET_CLIENT_TOKEN, }; -use contacts_status_item::ContactsStatusItem; use fs::OpenOptions; use futures::{ channel::{mpsc, oneshot}, @@ -89,8 +88,6 @@ fn main() { }); app.run(move |cx| { - cx.add_status_bar_item(|_| ContactsStatusItem::new()); - let client = client::Client::new(http.clone()); let mut languages = LanguageRegistry::new(login_shell_env_loaded); languages.set_language_server_download_dir(zed::paths::LANGUAGES_DIR.clone()); @@ -106,7 +103,6 @@ fn main() { watch_settings_file(default_settings, settings_file, themes.clone(), cx); watch_keymap_file(keymap_file, cx); - contacts_status_item::init(cx); context_menu::init(cx); project::Project::init(&client); client::Channel::init(&client);