🐛 Fix incorrect iterator order in action lists

This commit is contained in:
Manuel Cillero 2024-04-28 23:54:56 +02:00
parent 0cc2d7ee2d
commit 53b97c728c

View file

@ -30,6 +30,7 @@ impl ActionsList {
.read()
.unwrap()
.iter()
.rev()
.map(|a| {
if let Some(action) = (**a).downcast_ref::<A>() {
f(action);