1
0
Fork 0
forked from wry/wry

tree: make surface visibility tracking more robust

This commit is contained in:
Julian Orth 2024-03-29 20:07:28 +01:00
parent be0935c8dd
commit ba98103233
26 changed files with 313 additions and 144 deletions

View file

@ -69,6 +69,10 @@ pub trait Cursor {
fn time_until_tick(&self) -> Duration {
Duration::new(0, 0)
}
fn set_visible(&self, visible: bool) {
let _ = visible;
}
}
pub struct ServerCursors {