From f6143747daad64c8269c5449f210bc2629f9e9c4 Mon Sep 17 00:00:00 2001 From: Victoria Brekenfeld Date: Thu, 23 Jan 2025 15:46:17 +0100 Subject: [PATCH] layout/floating: Fix indicator element order --- src/shell/layout/floating/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell/layout/floating/mod.rs b/src/shell/layout/floating/mod.rs index 21175a1f..daa65739 100644 --- a/src/shell/layout/floating/mod.rs +++ b/src/shell/layout/floating/mod.rs @@ -1578,7 +1578,7 @@ impl FloatingLayout { active_window_hint.blue, ], ); - window_elements.push(element.into()); + window_elements.insert(0, element.into()); } }