diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ff64ef..4edc7bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to `ewwii` are documented here. This changelog follows the [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format, and this project adheres to [Semantic Versioning](https://semver.org/). +## [UNRELEASED] + +## Fixed + +- Circular progress bar not updating dynamically. + ## [0.3.0] - 2025-11-01 ## Added diff --git a/crates/ewwii/src/widgets/widget_definitions.rs b/crates/ewwii/src/widgets/widget_definitions.rs index ef8f88b..4f264d8 100644 --- a/crates/ewwii/src/widgets/widget_definitions.rs +++ b/crates/ewwii/src/widgets/widget_definitions.rs @@ -1156,7 +1156,7 @@ pub(super) fn build_circular_progress_bar( } }); - let id = hash_props_and_type(&props, "CircularProgressBar"); + let id = hash_props_and_type(&props, "CircularProgress"); widget_registry.widgets.insert(id, WidgetEntry { update_fn, widget: widget.clone().upcast() });