From b9778944ba27e1deeec1be2bdc286790e6274470 Mon Sep 17 00:00:00 2001 From: tcmal Date: Thu, 4 Jul 2024 22:22:46 +0100 Subject: support floating windows --- src/clients/monitors.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/clients/monitors.rs') diff --git a/src/clients/monitors.rs b/src/clients/monitors.rs index 0a9bcde..6ca6fdf 100644 --- a/src/clients/monitors.rs +++ b/src/clients/monitors.rs @@ -15,8 +15,8 @@ pub struct MonitorInfo { impl MonitorInfo { /// Iterate over all tiled clients, returning a mutable reference to each. pub fn clients_tiled_mut(&mut self) -> impl Iterator { - // TODO: tag filtering, floating - self.clients.iter_mut() + // TODO: tag filtering + self.clients.iter_mut().filter(|c| !c.floating()) } } -- cgit v1.2.3