mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Fix events filter in wait_for_user_agent_handling_complete (#37241)
Fix a mistake from https://github.com/servo/servo/pull/37095 cc: @xiaochengh Signed-off-by: batu_hoang <longvatrong111@gmail.com>
This commit is contained in:
parent
b422a65a00
commit
e0d96163c7
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ impl Handler {
|
||||||
let count_non_null_actions_in_tick = tick_actions
|
let count_non_null_actions_in_tick = tick_actions
|
||||||
.iter()
|
.iter()
|
||||||
.filter(|(_, action)| {
|
.filter(|(_, action)| {
|
||||||
!matches!(action, ActionItem::Pointer(PointerActionItem::Pointer(_)))
|
matches!(action, ActionItem::Pointer(PointerActionItem::Pointer(_)))
|
||||||
})
|
})
|
||||||
.count();
|
.count();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue