From 53b97c728c680854ff858fbe7e6abf8fa9f4a925 Mon Sep 17 00:00:00 2001 From: Manuel Cillero Date: Sun, 28 Apr 2024 23:54:56 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20incorrect=20iterator=20ord?= =?UTF-8?q?er=20in=20action=20lists?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/action/list.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/action/list.rs b/src/core/action/list.rs index 2341b406..fec25027 100644 --- a/src/core/action/list.rs +++ b/src/core/action/list.rs @@ -30,6 +30,7 @@ impl ActionsList { .read() .unwrap() .iter() + .rev() .map(|a| { if let Some(action) = (**a).downcast_ref::() { f(action);