feat: sync state with greeter

This commit is contained in:
Ashley Wulber 2025-08-08 13:28:37 -04:00 committed by Ashley Wulber
parent 74e90f793f
commit b3a67bca50
4 changed files with 125 additions and 10 deletions

View file

@ -81,6 +81,10 @@ impl A11yState {
self.global.clone()
}
pub fn screen_inverted(&self) -> bool {
self.screen_inverted
}
pub fn set_screen_magnifier(&mut self, enabled: bool) {
self.magnifier_state = enabled;