This commit is contained in:
leo 2021-08-12 11:38:55 +08:00
parent 6f61c79e8b
commit 56521d9418
7 changed files with 18 additions and 18 deletions

View file

@ -156,7 +156,7 @@ namespace SourceGit.Views.Widgets {
var copyPath = new MenuItem();
copyPath.Header = App.Text("CopyPath");
copyPath.Click += (obj, ev) => {
Clipboard.SetText(change.Path);
Clipboard.SetDataObject(change.Path, true);
ev.Handled = true;
};
menu.Items.Add(copyPath);