chore: surface action for LiveSettings update

This commit is contained in:
Ashley Wulber 2026-06-05 12:29:38 -04:00 committed by Ashley Wulber
parent e939d334f6
commit f04437cee5
2 changed files with 60 additions and 23 deletions

View file

@ -63,6 +63,7 @@ pub enum Action {
size: Size,
},
Ignore,
SyncLiveSettings(iced::window::Id),
Task(Arc<dyn Fn() -> Task<Action> + Send + Sync>),
}
@ -146,7 +147,7 @@ impl std::fmt::Debug for Action {
Self::DestroyLayerShell(arg0) => {
f.debug_tuple("DestroyLayerShell").field(arg0).finish()
}
Self::Task(_) => f.debug_tuple("Task").finish(),
Self::SyncLiveSettings(arg0) => f.debug_tuple("SyncLiveSettings").field(arg0).finish(),
}
}
}