diff --git a/crates/ui_input/src/number_field.rs b/crates/ui_input/src/number_field.rs index b3f50584d69d9adc965028400c26fa68074b9b84..37ef4db53b2620e217618413f95a92f892fe4993 100644 --- a/crates/ui_input/src/number_field.rs +++ b/crates/ui_input/src/number_field.rs @@ -33,13 +33,13 @@ pub trait NumberFieldType: Display + Copy + Clone + Sized + PartialOrd + FromStr impl NumberFieldType for gpui::FontWeight { fn default_step() -> Self { - FontWeight(10.0) + FontWeight(50.0) } fn large_step() -> Self { - FontWeight(50.0) + FontWeight(100.0) } fn small_step() -> Self { - FontWeight(5.0) + FontWeight(10.0) } fn min_value() -> Self { gpui::FontWeight::THIN