chore: update dependencies
This commit is contained in:
parent
09cc1bda81
commit
8e57d5b165
5 changed files with 49 additions and 36 deletions
|
|
@ -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)
|
||||
})
|
||||
})
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue