Skip to content

Commit cb4b5f5

Browse files
committed
Fix
1 parent a0cecd0 commit cb4b5f5

File tree

4 files changed

+29
-29
lines changed

4 files changed

+29
-29
lines changed

src/Files.App.Controls/Storage/RingShape/RingShape.Properties.cs

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -15,71 +15,71 @@ public partial class RingShape : Path
1515
public partial double StartAngle { get; set; }
1616

1717
[GeneratedDependencyProperty(DefaultValue = 90.0d)]
18-
public partial double EndAngle{get;set;}
18+
public partial double EndAngle { get; set; }
1919

2020
[GeneratedDependencyProperty(DefaultValue = SweepDirection.Clockwise)]
21-
public partial SweepDirection SweepDirection{get;set;}
21+
public partial SweepDirection SweepDirection { get; set; }
2222

2323
[GeneratedDependencyProperty(DefaultValue = 0.0d)]
24-
public partial double MinAngle{get;set;}
24+
public partial double MinAngle { get; set; }
2525

2626
[GeneratedDependencyProperty(DefaultValue = 360.0d)]
27-
public partial double MaxAngle{get;set;}
27+
public partial double MaxAngle { get; set; }
2828

2929
[GeneratedDependencyProperty(DefaultValue = 0.0d)]
30-
public partial double RadiusWidth{get;set;}
30+
public partial double RadiusWidth { get; set; }
3131

3232
[GeneratedDependencyProperty(DefaultValue = 0.0d)]
33-
public partial double RadiusHeight{get;set;}
33+
public partial double RadiusHeight { get; set; }
3434

3535
[GeneratedDependencyProperty]
36-
public partial bool IsCircle{get;set;}
36+
public partial bool IsCircle { get; set; }
3737

3838
[GeneratedDependencyProperty]
39-
public partial Point Center{get;set;}
39+
public partial Point Center { get; set; }
4040

4141
[GeneratedDependencyProperty]
42-
public partial double ActualRadiusWidth{get;set;}
42+
public partial double ActualRadiusWidth { get; set; }
4343

4444
[GeneratedDependencyProperty]
45-
public partial double ActualRadiusHeight{get;set;}
45+
public partial double ActualRadiusHeight { get; set; }
4646

47-
protected virtual void OnStartAngleChanged(double oldValue, double newValue)
47+
partial void OnStartAngleChanged(double newValue)
4848
{
4949
StartAngleChanged();
5050
}
5151

52-
protected virtual void OnEndAngleChanged(double oldValue, double newValue)
52+
partial void OnEndAngleChanged(double newValue)
5353
{
5454
EndAngleChanged();
5555
}
5656

57-
protected virtual void OnSweepDirectionChanged(SweepDirection oldValue, SweepDirection newValue)
57+
partial void OnSweepDirectionChanged(SweepDirection newValue)
5858
{
5959
SweepDirectionChanged();
6060
}
6161

62-
protected virtual void OnMinAngleChanged(double oldValue, double newValue)
62+
partial void OnMinAngleChanged(double newValue)
6363
{
6464
MinMaxAngleChanged(false);
6565
}
6666

67-
protected virtual void OnMaxAngleChanged(double oldValue, double newValue)
67+
partial void OnMaxAngleChanged(double newValue)
6868
{
6969
MinMaxAngleChanged(true);
7070
}
7171

72-
protected virtual void OnRadiusWidthChanged(double oldValue, double newValue)
72+
partial void OnRadiusWidthChanged(double newValue)
7373
{
7474
RadiusWidthChanged();
7575
}
7676

77-
protected virtual void OnRadiusHeightChanged(double oldValue, double newValue)
77+
partial void OnRadiusHeightChanged(double newValue)
7878
{
7979
RadiusHeightChanged();
8080
}
8181

82-
protected virtual void OnIsCircleChanged(bool oldValue, bool newValue)
82+
partial void OnIsCircleChanged(bool newValue)
8383
{
8484
IsCircleChanged();
8585
}

src/Files.App.Controls/Storage/StorageRing/StorageRing.Properties.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public partial class StorageRing
3232
[GeneratedDependencyProperty(DefaultValue = 90.01d)]
3333
public partial double PercentCritical { get; set; }
3434

35-
[GeneratedDependencyProperty(DefaultValue = 0.0d)]
35+
[GeneratedDependencyProperty]
3636
public partial double ValueAngle { get; set; }
3737

3838
[GeneratedDependencyProperty(DefaultValue = 16.0d)]

src/Files.App/UserControls/AddressToolbar.xaml.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@ public sealed partial class AddressToolbar : UserControl
2828

2929
[GeneratedDependencyProperty]
3030
public partial bool IsSidebarPaneOpenToggleButtonVisible { get; set; }
31-
31+
3232
[GeneratedDependencyProperty]
33-
public partial bool ShowOngoingTasks {get;set;}
34-
33+
public partial bool ShowOngoingTasks { get; set; }
34+
3535
[GeneratedDependencyProperty]
36-
public partial bool ShowSettingsButton {get;set;}
37-
36+
public partial bool ShowSettingsButton { get; set; }
37+
3838
[GeneratedDependencyProperty]
39-
public partial bool ShowSearchBox {get;set;}
40-
39+
public partial bool ShowSearchBox { get; set; }
40+
4141
[GeneratedDependencyProperty]
42-
public partial AddressToolbarViewModel ViewModel {get;set;}
42+
public partial AddressToolbarViewModel ViewModel { get; set; }
4343

4444
// Commands
4545

src/Files.App/UserControls/DataGridHeader.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ public sealed partial class DataGridHeader : UserControl
1414
public partial string Header { get; set; }
1515

1616
[GeneratedDependencyProperty(DefaultValue = true)]
17-
public partial bool CanBeSorted {get;set;}
17+
public partial bool CanBeSorted { get; set; }
1818

1919
[GeneratedDependencyProperty]
20-
public partial SortDirection? ColumnSortOption {get;set;}
20+
public partial SortDirection? ColumnSortOption { get; set; }
2121

2222
public ICommand Command { get; set; }
2323
public object CommandParameter { get; set; }

0 commit comments

Comments
 (0)