mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:47:35 +00:00
LibJS: Add missing Vector::in_reverse() in ensure_property_table()
Regressed with 35fcb028e9
.
This commit is contained in:
parent
32bff52c25
commit
343d699627
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ void Shape::ensure_property_table() const
|
|||
}
|
||||
transition_chain.append(*this);
|
||||
|
||||
for (auto const& shape : transition_chain) {
|
||||
for (auto const& shape : transition_chain.in_reverse()) {
|
||||
if (!shape.m_property_key.is_valid()) {
|
||||
// Ignore prototype transitions as they don't affect the key map.
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue