From 3c624009f6f37dd816a4640167bfc2a6f70e3105 Mon Sep 17 00:00:00 2001 From: leo Date: Mon, 1 Feb 2021 10:43:13 +0800 Subject: [PATCH] fix: always enable push operation for local branches --- src/UI/Dashboard.xaml.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/UI/Dashboard.xaml.cs b/src/UI/Dashboard.xaml.cs index e47eeb3b..27cf38b2 100644 --- a/src/UI/Dashboard.xaml.cs +++ b/src/UI/Dashboard.xaml.cs @@ -594,7 +594,6 @@ 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;