mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
git_ui: When no changes, disable stage/unstage toolbar buttons (#39909)
# Why While working on recent PR I have spotted that "Stage" and "Unstage" buttons in "Uncommited Changes" toolbar are always active, even when there is no changes made locally. <img width="1628" height="656" alt="Screenshot 2025-10-10 at 00 49 06" src="https://github.com/user-attachments/assets/6bdb9ded-17c8-4f84-8649-b297162c1992" /> # How Re-use already existing button states for managing the disabled state of "Uncommited Changes" toolbar buttons when changeset is empty. Release Notes: - Added disabled state for "Uncommited Changes" toolbar buttons when there are no changes present # Preview <img width="1728" height="772" alt="Screenshot 2025-10-10 at 08 40 14" src="https://github.com/user-attachments/assets/ff41d852-974e-4ce1-9163-ecd30e17d5d8" />
This commit is contained in:
parent
fd4682c8d1
commit
59b87d5c71
1 changed files with 10 additions and 0 deletions
|
|
@ -947,6 +947,11 @@ impl Render for ProjectDiffToolbar {
|
|||
&StageAndNext,
|
||||
&focus_handle,
|
||||
))
|
||||
.disabled(
|
||||
!button_states.prev_next
|
||||
&& !button_states.stage_all
|
||||
&& !button_states.unstage_all,
|
||||
)
|
||||
.on_click(cx.listener(|this, _, window, cx| {
|
||||
this.dispatch_action(&StageAndNext, window, cx)
|
||||
})),
|
||||
|
|
@ -958,6 +963,11 @@ impl Render for ProjectDiffToolbar {
|
|||
&UnstageAndNext,
|
||||
&focus_handle,
|
||||
))
|
||||
.disabled(
|
||||
!button_states.prev_next
|
||||
&& !button_states.stage_all
|
||||
&& !button_states.unstage_all,
|
||||
)
|
||||
.on_click(cx.listener(|this, _, window, cx| {
|
||||
this.dispatch_action(&UnstageAndNext, window, cx)
|
||||
})),
|
||||
|
|
|
|||
Loading…
Reference in a new issue