mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2025-01-23 01:36:57 -08: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…
Reference in a new issue