mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 12:45:00 +00:00
fix<Dashboard>: fix .NET 4.8 compile warning
This commit is contained in:
parent
5fbefad159
commit
53a1e069d1
1 changed files with 25 additions and 25 deletions
|
@ -817,9 +817,9 @@ namespace SourceGit.Views.Widgets {
|
|||
|
||||
var archive = new MenuItem();
|
||||
archive.Header = App.Text("Archive");
|
||||
archive.Click += (o, e) => {
|
||||
archive.Click += (o, ev) => {
|
||||
new Popups.Archive(repo.Path, tag).Show();
|
||||
e.Handled = true;
|
||||
ev.Handled = true;
|
||||
};
|
||||
|
||||
var copy = new MenuItem();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue