fix internal events blocking custom events on the same widget

This commit is contained in:
galister
2025-10-31 19:10:13 +09:00
parent 44b9a79849
commit 81d2672740
3 changed files with 5 additions and 6 deletions

View File

@@ -264,9 +264,6 @@ impl WidgetState {
// Consider all listeners on this widget, even if we had a Consume.
// Store the highest value for return.
*call_data.event_result = call_data.event_result.merge(new_result);
if !call_data.event_result.can_propagate() {
break;
}
}
Ok(())
}