diff --git a/src/Ursa.Themes.Semi/Controls/NumericUpDown.axaml b/src/Ursa.Themes.Semi/Controls/NumericUpDown.axaml
index 7bffee8..11c4b6b 100644
--- a/src/Ursa.Themes.Semi/Controls/NumericUpDown.axaml
+++ b/src/Ursa.Themes.Semi/Controls/NumericUpDown.axaml
@@ -35,22 +35,24 @@
MinWidth="0"
HorizontalContentAlignment="Stretch"
VerticalContentAlignment="Stretch"
- ShowButtonSpinner="{TemplateBinding ShowButtonSpinner}"
AllowSpin="{TemplateBinding AllowSpin}"
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
- BorderThickness="{TemplateBinding BorderThickness}">
+ BorderThickness="{TemplateBinding BorderThickness}"
+ ShowButtonSpinner="{TemplateBinding ShowButtonSpinner}">
diff --git a/src/Ursa/Controls/NumericUpDown/IntUpDown.cs b/src/Ursa/Controls/NumericUpDown/IntUpDown.cs
index 218a9dd..eabbe4a 100644
--- a/src/Ursa/Controls/NumericUpDown/IntUpDown.cs
+++ b/src/Ursa/Controls/NumericUpDown/IntUpDown.cs
@@ -38,7 +38,7 @@ public class NumericUIntUpDown : NumericUpDownBase
{
MaximumProperty.OverrideDefaultValue(uint.MaxValue);
MinimumProperty.OverrideDefaultValue(uint.MinValue);
- StepProperty.OverrideDefaultValue(0);
+ StepProperty.OverrideDefaultValue(1);
}
protected override bool ParseText(string? text, out uint number)