code_style: run dotnet format
Some checks are pending
Continuous Integration / Build (push) Waiting to run
Continuous Integration / Prepare version string (push) Waiting to run
Continuous Integration / Package (push) Blocked by required conditions

This commit is contained in:
leo 2024-09-25 16:24:04 +08:00
parent acf71a30b8
commit 85b83990a8
No known key found for this signature in database
7 changed files with 18 additions and 17 deletions

View file

@ -18,7 +18,7 @@ namespace SourceGit.Converters
{
if (OperatingSystem.IsWindows())
return v;
var home = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
var prefixLen = home.EndsWith('/') ? home.Length - 1 : home.Length;
if (v.StartsWith(home, StringComparison.Ordinal))

View file

@ -43,12 +43,13 @@ namespace SourceGit.Models
{
_mode = mode;
YAxes = [new Axis() {
YAxes = [new Axis()
{
TextSize = 10,
MinLimit = 0,
SeparatorsPaint = new SolidColorPaint(new SKColor(0x40808080)) { StrokeThickness = 1 }
}];
if (mode == StaticsticsMode.ThisWeek)
{
for (int i = 0; i < 7; i++)

View file

@ -38,7 +38,7 @@ namespace SourceGit.Models
extension = ".sh";
else if (extension == ".kt" || extension == ".kts")
extension = ".kotlin";
foreach (var grammar in s_extraGrammars)
{
if (grammar.Extension.Equals(extension, StringComparison.OrdinalIgnoreCase))
@ -87,7 +87,7 @@ namespace SourceGit.Models
public ICollection<string> GetInjections(string scopeName) => _backend.GetInjections(scopeName);
public IRawGrammar GetGrammar(string scopeName) => GrammarUtility.GetGrammar(scopeName, _backend);
public string GetScope(string filename) => GrammarUtility.GetScope(filename, _backend);
private readonly RegistryOptions _backend = new(defaultTheme);
}
@ -95,8 +95,8 @@ namespace SourceGit.Models
{
public static TextMate.Installation CreateForEditor(TextEditor editor)
{
return editor.InstallTextMate(Application.Current?.ActualThemeVariant == ThemeVariant.Dark ?
new RegistryOptionsWrapper(ThemeName.DarkPlus) :
return editor.InstallTextMate(Application.Current?.ActualThemeVariant == ThemeVariant.Dark ?
new RegistryOptionsWrapper(ThemeName.DarkPlus) :
new RegistryOptionsWrapper(ThemeName.LightPlus));
}

View file

@ -32,7 +32,7 @@ namespace SourceGit.ViewModels
{
PopupHost.Active = value;
if (!_ignoreIndexChange && value is { Data: Repository repo})
if (!_ignoreIndexChange && value is { Data: Repository repo })
ActiveWorkspace.ActiveIdx = ActiveWorkspace.Repositories.IndexOf(repo.FullPath);
}
}

View file

@ -41,7 +41,7 @@ namespace SourceGit.Views
e.Handled = true;
}
}
if (!e.Handled && e.Key != Key.Space)
base.OnKeyDown(e);
}
@ -166,10 +166,10 @@ namespace SourceGit.Views
{
if (lastUnselected == -1)
continue;
break;
}
lastUnselected = i;
}
}
@ -186,10 +186,10 @@ namespace SourceGit.Views
{
if (lastUnselected == -1)
continue;
break;
}
lastUnselected = i;
}
@ -244,7 +244,7 @@ namespace SourceGit.Views
_disableSelectionChangingEvent = true;
var selected = new List<Models.Change>();
if (sender is ListBox { SelectedItems: {} selectedItems })
if (sender is ListBox { SelectedItems: { } selectedItems })
{
foreach (var item in selectedItems)
{

View file

@ -117,7 +117,7 @@ namespace SourceGit.Views
e.Handled = true;
}
}
if (!e.Handled)
base.OnKeyDown(e);
}

View file

@ -25,7 +25,7 @@ namespace SourceGit.Views
e.Handled = true;
}
}
public class RepositoryListBox : ListBox
{
protected override Type StyleKeyOverride => typeof(ListBox);
@ -40,7 +40,7 @@ namespace SourceGit.Views
e.Handled = true;
}
}
if (!e.Handled)
base.OnKeyDown(e);
}