From a24a6e4e3c441389fd7731320f47e61e567e237f Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Fri, 27 Dec 2024 11:20:03 +0300 Subject: Implement is-floating window rule matcher --- src/layout/floating.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/layout/floating.rs') diff --git a/src/layout/floating.rs b/src/layout/floating.rs index a04c9b94..b3647844 100644 --- a/src/layout/floating.rs +++ b/src/layout/floating.rs @@ -1029,6 +1029,7 @@ impl FloatingSpace { let win = tile.window_mut(); win.set_active_in_column(true); + win.set_floating(true); let is_active = is_active && Some(win.id()) == active.as_ref(); win.set_activated(is_active); -- cgit