mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
36 lines
1,021 B
C#
36 lines
1,021 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace SourceGit.Views.Popups {
|
|
/// <summary>
|
|
/// 遴选面板
|
|
/// </summary>
|
|
public partial class CherryPick : Controls.PopupWidget {
|
|
private string repo = null;
|
|
private string commit = null;
|
|
|
|
public CherryPick(string repo, Models.Commit commit) {
|
|
this.repo = repo;
|
|
this.commit = commit.SHA;
|
|
|
|
InitializeComponent();
|
|
|
|
txtSHA.Text = commit.ShortSHA;
|
|
txtCommit.Text = commit.Subject;
|
|
}
|
|
|
|
public override string GetTitle() {
|
|
return App.Text("CherryPick.Title");
|
|
}
|
|
|
|
public override Task<bool> Start() {
|
|
var noCommits = chkCommit.IsChecked != true;
|
|
|
|
return Task.Run(() => {
|
|
Models.Watcher.SetEnabled(repo, false);
|
|
new Commands.CherryPick(repo, commit, noCommits).Exec();
|
|
Models.Watcher.SetEnabled(repo, true);
|
|
return true;
|
|
});
|
|
}
|
|
}
|
|
}
|