mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 22:17:42 +00:00
LibCore: Remove redundant check in CObject::dispatch_event()
This commit is contained in:
parent
b90af9b1ed
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