From 1d0e6623650aeb034776fa02ae5f8092a97cbbf9 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Mon, 13 Apr 2026 16:27:16 -0400 Subject: [PATCH] chore: cargo fmt --- cosmic-app-list/src/app.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/cosmic-app-list/src/app.rs b/cosmic-app-list/src/app.rs index ad2f1a52..932ffd6c 100755 --- a/cosmic-app-list/src/app.rs +++ b/cosmic-app-list/src/app.rs @@ -652,7 +652,8 @@ impl CosmicAppList { let on_active_workspace = self.active_workspaces.is_empty() || toplevel_info.workspace.is_empty() - || self.active_workspaces + || self + .active_workspaces .iter() .any(|workspace| toplevel_info.workspace.contains(workspace)); @@ -665,7 +666,10 @@ impl CosmicAppList { .iter() .find(|(_, info)| info.name.as_ref() == Some(&self.core.applet.output_name)) .map_or(true, |(active_output, _)| { - toplevel_info.output.iter().any(|output| output == active_output) + toplevel_info + .output + .iter() + .any(|output| output == active_output) }); on_active_output && on_active_workspace