From d1bbe32625fd5efe01c6017bb843402456abe6cb Mon Sep 17 00:00:00 2001 From: Pedro Burgos <43417195+druskus20@users.noreply.github.com> Date: Tue, 19 Apr 2022 19:11:59 +0200 Subject: [PATCH] corrected start-angle to start-at (#433) --- crates/eww/src/widgets/widget_definitions.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)?; },