Skip to content

Commit a0f0e8c

Browse files
authored
Merge pull request #880 from HandyOrg/t/bot/fix-codeformatting
[Bot] Automated PR to fix formatting errors
2 parents 30bf4f3 + ffdc457 commit a0f0e8c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • src/Shared/HandyControl_Shared/Controls/Other

src/Shared/HandyControl_Shared/Controls/Other/Badge.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ public BadgeStatus Status
6464

6565
public static readonly DependencyProperty MaximumProperty = DependencyProperty.Register(
6666
"Maximum", typeof(int), typeof(Badge), new PropertyMetadata(ValueBoxes.Int99Box, OnMaximumChanged));
67-
67+
6868
private static void OnMaximumChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
6969
{
7070
var ctl = (Badge) d;
71-
var v = ctl.Value;
71+
var v = ctl.Value;
7272
ctl.SetCurrentValue(TextProperty, v <= ctl.Maximum ? v.ToString() : $"{ctl.Maximum}+");
7373
}
74-
74+
7575
public int Maximum
7676
{
7777
get => (int) GetValue(MaximumProperty);

0 commit comments

Comments
 (0)