mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-22 17:24:48 -05: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: https://github.com/SerenityOS/serenity/commit/a93f35ac713
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ void CObject::dispatch_event(CEvent& e, CObject* stay_within)
|
|||
e.accept();
|
||||
break;
|
||||
}
|
||||
} while (target && target != stay_within && !e.is_accepted());
|
||||
} while (target && !e.is_accepted());
|
||||
}
|
||||
|
||||
bool CObject::is_visible_for_timer_purposes() const
|
||||
|
|
Loading…
Reference in a new issue