1
0
Fork 0
forked from wry/wry

tree: rename capture notifications

This commit is contained in:
kossLAN 2026-05-29 18:25:57 -04:00
parent 3bc3d7ac2a
commit 869a2c2428
No known key found for this signature in database
3 changed files with 6 additions and 6 deletions

View file

@ -269,7 +269,7 @@ impl OutputNode {
}
}
pub fn screencast_changed(&self) {
pub fn captures_changed(&self) {
for ws in self.workspaces.iter() {
ws.update_has_captures();
}
@ -422,7 +422,7 @@ impl OutputNode {
capture.send_ready(now.0.tv_sec as _, now.0.tv_nsec as _);
}
}
self.screencast_changed();
self.captures_changed();
}
pub fn clear(&self) {

View file

@ -671,8 +671,8 @@ impl ToplevelData {
for jay_tl in self.jay_toplevels.lock().drain_values() {
jay_tl.destroy();
}
for screencast in self.ext_copy_sessions.lock().drain_values() {
screencast.stop();
for capture in self.ext_copy_sessions.lock().drain_values() {
capture.stop();
}
{
let id = toplevel_identifier();