fix(wayland): frame callbacks in order

This commit is contained in:
Nova
2025-08-04 22:59:46 -07:00
parent e1e773befb
commit 8e143f97d4
2 changed files with 5 additions and 5 deletions

View File

@@ -48,7 +48,7 @@ impl ClientExt for Client {
#[derive(Debug, Default)]
pub struct DoubleBuffer<State: Debug + Clone> {
current: State,
pub current: State,
pub pending: State,
}
impl<State: Debug + Clone> DoubleBuffer<State> {