diff --git a/crates/debugger_ui/src/session.rs b/crates/debugger_ui/src/session.rs index e0e6126867462e7440657b2dce3f40ead9a23e82..ce6730bee77495fa94ad2f079fdf6bda9d219be0 100644 --- a/crates/debugger_ui/src/session.rs +++ b/crates/debugger_ui/src/session.rs @@ -11,7 +11,7 @@ use project::worktree_store::WorktreeStore; use rpc::proto; use running::RunningState; use std::{cell::OnceCell, sync::OnceLock}; -use ui::{Indicator, prelude::*}; +use ui::{Indicator, Tooltip, prelude::*}; use workspace::{ CollaboratorId, FollowableItem, ViewId, Workspace, item::{self, Item}, @@ -153,6 +153,8 @@ impl DebugSession { }; h_flex() + .id("session-label") + .tooltip(Tooltip::text(format!("Session {}", self.session_id(cx).0,))) .ml(depth * px(16.0)) .gap_2() .when_some(icon, |this, indicator| this.child(indicator))