collab_ui: Add tooltip to branches popover (#2695)

Piotr Osiewicz created

Z-2554

Release Notes:

- N/A

Change summary

crates/collab_ui/src/collab_titlebar_item.rs | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)

Detailed changes

crates/collab_ui/src/collab_titlebar_item.rs 🔗

@@ -264,7 +264,8 @@ impl CollabTitlebarItem {
                                 MouseEventHandler::<ToggleVcsMenu, Self>::new(
                                     0,
                                     cx,
-                                    |mouse_state, _| {
+                                    |mouse_state, cx| {
+                                        enum BranchPopoverTooltip {}
                                         let style = git_style
                                             .in_state(self.branch_popover.is_some())
                                             .style_for(mouse_state);
@@ -274,6 +275,13 @@ impl CollabTitlebarItem {
                                             .with_margin_right(item_spacing)
                                             .aligned()
                                             .left()
+                                            .with_tooltip::<BranchPopoverTooltip>(
+                                                0,
+                                                "Recent branches".into(),
+                                                None,
+                                                theme.tooltip.clone(),
+                                                cx,
+                                            )
                                             .into_any_named("title-project-branch")
                                     },
                                 )