chore: update dependencies

This commit is contained in:
Vukašin Vojinović 2025-10-08 16:36:27 +02:00 committed by Ashley Wulber
parent 09cc1bda81
commit 8e57d5b165
5 changed files with 49 additions and 36 deletions

View file

@ -2287,7 +2287,7 @@ impl CosmicAppList {
if self.active_workspaces.is_empty() {
return Vec::new();
}
let current_output = self.core.applet.output_name.as_ref();
let current_output = &self.core.applet.output_name;
let mut focused_toplevels: Vec<ExtForeignToplevelHandleV1> = Vec::new();
let active_workspaces = &self.active_workspaces;
for toplevel_list in self.active_list.iter().chain(self.pinned_list.iter()) {
@ -2298,7 +2298,7 @@ impl CosmicAppList {
.any(|workspace| t_info.workspace.contains(workspace))
&& t_info.output.iter().any(|x| {
self.output_list.get(x).is_some_and(|val| {
val.name.as_ref().is_some_and(|n| *n == current_output)
val.name.as_ref().is_some_and(|n| n == current_output)
})
})
{

View file

@ -719,7 +719,7 @@ sctk::delegate_shm!(AppData);
cctk::delegate_toplevel_info!(AppData);
cctk::delegate_workspace!(AppData);
cctk::delegate_toplevel_manager!(AppData);
cctk::delegate_screencopy!(AppData, session: [SessionData], frame: [FrameData]);
cctk::delegate_screencopy!(AppData);
sctk::delegate_activation!(AppData, ExecRequestData);