Remove disabling effect on the stage and unstage toolbar buttons (#26936)

Closes #26883

Release Notes:

- N/A
This commit is contained in:
Cole Miller 2025-03-17 13:48:04 -04:00 committed by GitHub
parent aba242d576
commit dbe5399fc4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -919,12 +919,6 @@ impl Render for ProjectDiffToolbar {
&StageAndNext,
&focus_handle,
))
// don't actually disable the button so it's mashable
.color(if button_states.stage {
Color::Default
} else {
Color::Disabled
})
.on_click(cx.listener(|this, _, window, cx| {
this.dispatch_action(&StageAndNext, window, cx)
})),
@ -936,11 +930,6 @@ impl Render for ProjectDiffToolbar {
&UnstageAndNext,
&focus_handle,
))
.color(if button_states.unstage {
Color::Default
} else {
Color::Disabled
})
.on_click(cx.listener(|this, _, window, cx| {
this.dispatch_action(&UnstageAndNext, window, cx)
})),