diff --git a/Cargo.lock b/Cargo.lock index 32a5cd541fa5fddc5b6a172bbf204c83d4997ed9..104a15769d5c864a7e6d960d44764652100544c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2093,6 +2093,7 @@ dependencies = [ "collections", "db", "editor", + "extensions_ui", "feature_flags", "feedback", "futures 0.3.28", diff --git a/crates/collab_ui/Cargo.toml b/crates/collab_ui/Cargo.toml index 26237de4c6c20fa72e8a4a1fa25f5e5a75c1dc67..5ab841fbc96f9df0fb1b8a7a8e02929723703726 100644 --- a/crates/collab_ui/Cargo.toml +++ b/crates/collab_ui/Cargo.toml @@ -34,6 +34,7 @@ clock.workspace = true collections.workspace = true db.workspace = true editor.workspace = true +extensions_ui.workspace = true feature_flags.workspace = true feedback.workspace = true futures.workspace = true diff --git a/crates/collab_ui/src/collab_titlebar_item.rs b/crates/collab_ui/src/collab_titlebar_item.rs index 33d769b1d9942c795fa07ad343eebcd70e690a18..c759ce309804b8756c726a5a8e7ea4441056d60b 100644 --- a/crates/collab_ui/src/collab_titlebar_item.rs +++ b/crates/collab_ui/src/collab_titlebar_item.rs @@ -695,6 +695,7 @@ impl CollabTitlebarItem { .menu(|cx| { ContextMenu::build(cx, |menu, _| { menu.action("Settings", zed_actions::OpenSettings.boxed_clone()) + .action("Extensions", extensions_ui::Extensions.boxed_clone()) .action("Theme", theme_selector::Toggle.boxed_clone()) .separator() .action("Share Feedback", feedback::GiveFeedback.boxed_clone()) @@ -720,6 +721,7 @@ impl CollabTitlebarItem { ContextMenu::build(cx, |menu, _| { menu.action("Settings", zed_actions::OpenSettings.boxed_clone()) .action("Theme", theme_selector::Toggle.boxed_clone()) + .action("Extensions", extensions_ui::Extensions.boxed_clone()) .separator() .action("Share Feedback", feedback::GiveFeedback.boxed_clone()) })