context_menu: Fix certain menu items not reacting to click events (#49557)

Use `Workspace::for_window` instead of `window.root().flatten()`.



https://github.com/user-attachments/assets/3ea6dae3-166d-49e4-9fff-8256e13cc2bf



https://github.com/user-attachments/assets/eb8d9394-5f71-4df6-b0db-c1c8078f1b9a



Before you mark this PR as ready for review, make sure that you have:
- [x] Added a solid test coverage and/or screenshots from doing manual
testing
- [x] Done a self-review taking into account security and performance
aspects
- [x] Aligned any UI changes with the [UI
checklist](https://github.com/zed-industries/zed/blob/main/CONTRIBUTING.md#uiux-checklist)

Release Notes:

- Fixed certain context menu items not reacting to click events
This commit is contained in:
Kunall Banerjee 2026-02-23 13:58:34 -05:00 committed by GitHub
parent 04a2f059e2
commit 3333c79da1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -983,7 +983,7 @@ impl AgentConfiguration {
})
.entry("Add Custom Agent", None, {
move |window, cx| {
if let Some(workspace) = window.root().flatten() {
if let Some(workspace) = Workspace::for_window(window, cx) {
let workspace = workspace.downgrade();
window
.spawn(cx, async |cx| {

View file

@ -993,7 +993,7 @@ impl EditPredictionButton {
"Edit Prediction Menu Action",
action = "configure_excluded_files",
);
if let Some(workspace) = window.root().flatten() {
if let Some(workspace) = Workspace::for_window(window, cx) {
let workspace = workspace.downgrade();
window
.spawn(cx, async |cx| {