From c79c75eae70bd3662c4e4787a3acf9cef01346f9 Mon Sep 17 00:00:00 2001 From: Victoria Brekenfeld Date: Wed, 22 Nov 2023 17:46:55 +0100 Subject: [PATCH] tiling: Don't render popups for maximized elements --- src/shell/layout/tiling/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/shell/layout/tiling/mod.rs b/src/shell/layout/tiling/mod.rs index 7af788bd..fc311fb8 100644 --- a/src/shell/layout/tiling/mod.rs +++ b/src/shell/layout/tiling/mod.rs @@ -4999,7 +4999,9 @@ where } else { window_elements.extend(w_elements); } - popup_elements.extend(p_elements) + if !mapped.is_maximized(false) { + popup_elements.extend(p_elements); + } } } });