mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-23 20:47:25 -08:00
code_style: run dotnet format
This commit is contained in:
parent
9e048751ae
commit
3ef703c65d
2 changed files with 3 additions and 3 deletions
|
@ -4,7 +4,7 @@ namespace SourceGit.Models
|
||||||
{
|
{
|
||||||
public class ResetMode
|
public class ResetMode
|
||||||
{
|
{
|
||||||
public static readonly ResetMode[] Supported =
|
public static readonly ResetMode[] Supported =
|
||||||
[
|
[
|
||||||
new ResetMode("Soft", "Keep all changes. Stage differences", "--soft", Brushes.Green),
|
new ResetMode("Soft", "Keep all changes. Stage differences", "--soft", Brushes.Green),
|
||||||
new ResetMode("Mixed", "Keep all changes. Unstage differences", "--mixed", Brushes.Orange),
|
new ResetMode("Mixed", "Keep all changes. Unstage differences", "--mixed", Brushes.Orange),
|
||||||
|
|
|
@ -430,7 +430,7 @@ namespace SourceGit.ViewModels
|
||||||
e.Handled = true;
|
e.Handled = true;
|
||||||
};
|
};
|
||||||
menu.Items.Add(copySHA);
|
menu.Items.Add(copySHA);
|
||||||
|
|
||||||
var copyInfo = new MenuItem();
|
var copyInfo = new MenuItem();
|
||||||
copyInfo.Header = App.Text("CommitCM.CopyInfo");
|
copyInfo.Header = App.Text("CommitCM.CopyInfo");
|
||||||
copyInfo.Icon = App.CreateMenuIcon("Icons.Copy");
|
copyInfo.Icon = App.CreateMenuIcon("Icons.Copy");
|
||||||
|
@ -440,7 +440,7 @@ namespace SourceGit.ViewModels
|
||||||
e.Handled = true;
|
e.Handled = true;
|
||||||
};
|
};
|
||||||
menu.Items.Add(copyInfo);
|
menu.Items.Add(copyInfo);
|
||||||
|
|
||||||
return menu;
|
return menu;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue