fix: clockwise prop not working on circ progress

This commit is contained in:
Byson94
2025-12-10 14:52:56 +05:30
parent 2cbf64e250
commit 70de347bcf
2 changed files with 7 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
## [UNRELEASED]
## Added
### Added
- `gtk_ui` function for loading .ui files.
- `widget-control` (`wc` in short) command for controlling widgets.
@@ -16,6 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
- `widget_control` utility function for dynamic widget handling.
- `text` and `show_text` property to progressbar widget.
### Fixed
- `clockwise` property not working on circular_progress.
## [0.3.1] - 2025-11-01
## Fixed
@@ -26,7 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
## [0.3.0] - 2025-11-01
## Added
### Added
- `localsignal` signal for fast and cheap property update.
- `localbind` utility for binding `localsignal` to a widget property.

View File

@@ -1294,7 +1294,7 @@ pub(super) fn build_circular_progress_bar(
widget.set_property("thickness", thickness);
}
if let Ok(clockwise) = get_f64_prop(&props, "clockwise", None) {
if let Ok(clockwise) = get_bool_prop(&props, "clockwise", None) {
widget.set_property("clockwise", clockwise);
}