feat: remove remove action from widget_action utility

This commit is contained in:
Byson94
2025-11-29 19:49:52 +05:30
parent 43721426e8
commit ddce15481f
2 changed files with 1 additions and 4 deletions

View File

@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
- `widget-control` (`wc` in short) command for controlling widgets.
- `placeholder` property to input widget.
- `transition_duration` property to stack widget.
- `widget_control` utility function for dynamic widget handling.
## [0.3.1] - 2025-11-01

View File

@@ -583,10 +583,6 @@ pub(super) fn build_widgetaction_util(
let cmd = parts.next();
match cmd {
Some("remove") => {
child.unparent();
}
Some("add-class") => {
if let Some(class) = parts.next() {
child.add_css_class(class);