diff --git a/crates/eww/src/widgets/widget_definitions.rs b/crates/eww/src/widgets/widget_definitions.rs index 540a39b..27c60a0 100644 --- a/crates/eww/src/widgets/widget_definitions.rs +++ b/crates/eww/src/widgets/widget_definitions.rs @@ -786,7 +786,7 @@ fn build_circular_progress_bar(bargs: &mut BuilderArgs) -> Result { def_widget!(bargs, _g, w, { // @prop value - the value, between 0 - 100 prop(value: as_f64) { w.set_property("value", value)?; }, - // @prop start-angle - the angle that the circle should start at + // @prop start-at - the angle that the circle should start at prop(start_at: as_f64) { w.set_property("start-at", start_at)?; }, // @prop thickness - the thickness of the circle prop(thickness: as_f64) { w.set_property("thickness", thickness)?; },