Skip to content

Commit eb3b698

Browse files
committed
Fix missing method
1 parent 6ff239c commit eb3b698

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@ private void OnTrackRingThicknessChanged(double oldValue, double newValue)
2929
UpdateRings(this);
3030
}
3131

32+
private void OnMinAngleChanged(double oldValue, double newValue)
33+
{
34+
UpdateValues(this, Value, _oldValue, false, -1.0);
35+
CalculateAndSetNormalizedAngles(this, newValue, MaxAngle);
36+
UpdateRings(this);
37+
}
38+
3239
private void OnMaxAngleChanged(double oldValue, double newValue)
3340
{
3441
UpdateValues(this, Value, _oldValue, false, -1.0);

0 commit comments

Comments
 (0)