Skip to content

Commit

Permalink
oops regression
Browse files Browse the repository at this point in the history
  • Loading branch information
heftymouse committed Jun 7, 2024
1 parent 8643be8 commit 8546538
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Files.App/UserControls/StatusCenter/SpeedGraph.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ public sealed partial class SpeedGraph : Control
public ObservableCollection<Vector2> Points
{
get => (ObservableCollection<Vector2>)GetValue(PointsProperty);
set => SetValue(PointsProperty, value);
set
{
highestValue = 0;
SetValue(PointsProperty, value);
}
}

public static readonly DependencyProperty PointsProperty =
Expand Down

0 comments on commit 8546538

Please sign in to comment.