diff options
author | tcmal <me@aria.rip> | 2024-07-15 15:30:06 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-07-15 19:18:59 +0100 |
commit | 5d2a23a5d618725b75ba77d7185601e5439801c5 (patch) | |
tree | c0d37b1e3e3bd796deab0de904b31ef5cd21e048 /src/clients/monitors.rs | |
parent | 641d4db398357bd50e83dc77464558acf83d9b1d (diff) |
support fullscreen mode
Diffstat (limited to 'src/clients/monitors.rs')
-rw-r--r-- | src/clients/monitors.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clients/monitors.rs b/src/clients/monitors.rs index 6ca6fdf..6790632 100644 --- a/src/clients/monitors.rs +++ b/src/clients/monitors.rs @@ -16,7 +16,7 @@ impl MonitorInfo { /// Iterate over all tiled clients, returning a mutable reference to each. pub fn clients_tiled_mut(&mut self) -> impl Iterator<Item = &mut Client> { // TODO: tag filtering - self.clients.iter_mut().filter(|c| !c.floating()) + self.clients.iter_mut().filter(|c| c.tiled()) } } |