mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-01 21:59:11 +00:00
LibCore: Remove redundant check in CObject::dispatch_event()
This commit is contained in:
parent
b90af9b1ed
commit
a93f35ac71
Notes:
sideshowbarker
2024-07-19 09:52:01 +09:00
Author: https://github.com/awesomekling
Commit: a93f35ac71
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ void CObject::dispatch_event(CEvent& e, CObject* stay_within)
|
||||||
e.accept();
|
e.accept();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} while (target && target != stay_within && !e.is_accepted());
|
} while (target && !e.is_accepted());
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CObject::is_visible_for_timer_purposes() const
|
bool CObject::is_visible_for_timer_purposes() const
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue