git: Improve co-author button (#29742)

This PR changes the tooltip label to say "Remove" when you have the
button toggled on and collaborators in the list.

Release Notes:

- N/A

Co-authored-by: Joseph T. Lyons <josephtlyons@gmail.com>
This commit is contained in:
Danilo Leal 2025-05-01 14:12:52 -03:00 committed by GitHub
parent 57610c9935
commit 96d785cb45
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 12 additions and 2 deletions

View file

@ -2755,18 +2755,26 @@ impl GitPanel {
pub(crate) fn render_co_authors(&self, cx: &Context<Self>) -> Option<AnyElement> {
let potential_co_authors = self.potential_co_authors(cx);
let (tooltip_label, icon) = if self.add_coauthors {
("Add co-authored-by", IconName::UserCheck)
} else {
("Remove co-authored-by", IconName::Person)
};
if potential_co_authors.is_empty() {
None
} else {
Some(
IconButton::new("co-authors", IconName::Person)
IconButton::new("co-authors", icon)
.shape(ui::IconButtonShape::Square)
.icon_color(Color::Disabled)
.selected_icon_color(Color::Selected)
.toggle_state(self.add_coauthors)
.tooltip(move |_, cx| {
let title = format!(
"Add co-authored-by:{}{}",
"{}:{}{}",
tooltip_label,
if potential_co_authors.len() == 1 {
""
} else {

View file

@ -238,6 +238,7 @@ pub enum IconName {
Undo,
Unpin,
Update,
UserCheck,
UserGroup,
UserRoundPen,
Visible,