mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
optimize<ContextMenu>: auto disable some context menu actions when the branch is at the same point with its upstream
This commit is contained in:
parent
7055ed84b3
commit
5f583e5146
2 changed files with 6 additions and 0 deletions
|
@ -594,6 +594,7 @@ namespace SourceGit.UI {
|
|||
|
||||
var push = new MenuItem();
|
||||
push.Header = App.Format("BranchCM.Push", branch.Name);
|
||||
push.IsEnabled = !string.IsNullOrEmpty(branch.UpstreamTrack);
|
||||
push.Click += (o, e) => {
|
||||
Push.Show(repo, branch);
|
||||
e.Handled = true;
|
||||
|
@ -613,6 +614,7 @@ namespace SourceGit.UI {
|
|||
var upstream = branch.Upstream.Substring(13);
|
||||
var fastForward = new MenuItem();
|
||||
fastForward.Header = App.Format("BranchCM.FastForward", upstream);
|
||||
fastForward.IsEnabled = !string.IsNullOrEmpty(branch.UpstreamTrack);
|
||||
fastForward.Click += (o, e) => {
|
||||
Merge.StartDirectly(repo, upstream, branch.Name);
|
||||
e.Handled = true;
|
||||
|
@ -620,6 +622,7 @@ namespace SourceGit.UI {
|
|||
|
||||
var pull = new MenuItem();
|
||||
pull.Header = App.Format("BranchCM.Pull", upstream);
|
||||
pull.IsEnabled = !string.IsNullOrEmpty(branch.UpstreamTrack);
|
||||
pull.Click += (o, e) => {
|
||||
Pull.Show(repo);
|
||||
e.Handled = true;
|
||||
|
|
|
@ -227,6 +227,7 @@ namespace SourceGit.UI {
|
|||
var upstream = branch.Upstream.Substring(13);
|
||||
var fastForward = new MenuItem();
|
||||
fastForward.Header = App.Format("BranchCM.FastForward", upstream);
|
||||
fastForward.IsEnabled = !string.IsNullOrEmpty(branch.UpstreamTrack);
|
||||
fastForward.Click += (o, e) => {
|
||||
Merge.StartDirectly(Repo, upstream, branch.Name);
|
||||
e.Handled = true;
|
||||
|
@ -235,6 +236,7 @@ namespace SourceGit.UI {
|
|||
|
||||
var pull = new MenuItem();
|
||||
pull.Header = App.Format("BranchCM.Pull", upstream);
|
||||
pull.IsEnabled = !string.IsNullOrEmpty(branch.UpstreamTrack);
|
||||
pull.Click += (o, e) => {
|
||||
Pull.Show(Repo);
|
||||
e.Handled = true;
|
||||
|
@ -244,6 +246,7 @@ namespace SourceGit.UI {
|
|||
|
||||
var push = new MenuItem();
|
||||
push.Header = App.Format("BranchCM.Push", branch.Name);
|
||||
push.IsEnabled = !string.IsNullOrEmpty(branch.UpstreamTrack);
|
||||
push.Click += (o, e) => {
|
||||
Push.Show(Repo, branch);
|
||||
e.Handled = true;
|
||||
|
|
Loading…
Reference in a new issue