mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-10-31 13:03:20 -07:00
code_style: run dotnet format
This commit is contained in:
parent
acf71a30b8
commit
85b83990a8
7 changed files with 18 additions and 17 deletions
|
@ -43,7 +43,8 @@ namespace SourceGit.Models
|
|||
{
|
||||
_mode = mode;
|
||||
|
||||
YAxes = [new Axis() {
|
||||
YAxes = [new Axis()
|
||||
{
|
||||
TextSize = 10,
|
||||
MinLimit = 0,
|
||||
SeparatorsPaint = new SolidColorPaint(new SKColor(0x40808080)) { StrokeThickness = 1 }
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue