@@ -240,8 +240,7 @@ impl<A: AppData, G: GraphicsInstance, T: Theme<G::Shared>> Window<A, G, T> {
240240 let winit_id = window. id ( ) ;
241241
242242 #[ cfg( feature = "accesskit" ) ]
243- let accesskit =
244- accesskit_winit:: Adapter :: with_event_loop_proxy ( el, & window, el. create_proxy ( ) ) ;
243+ let accesskit = todo ! ( ) ; // FIXME: accesskit_winit::Adapter::with_event_loop_proxy(el, &window, el.create_proxy());
245244
246245 let window = WindowData {
247246 window,
@@ -307,7 +306,7 @@ impl<A: AppData, G: GraphicsInstance, T: Theme<G::Shared>> Window<A, G, T> {
307306 } ;
308307
309308 #[ cfg( feature = "accesskit" ) ]
310- window. accesskit . process_event ( & window. window , & event) ;
309+ todo ! ( ) ; // FIXME: window.accesskit.process_event(&window.window, &event);
311310
312311 let ( apply_size, resize, poll) = match event {
313312 WindowEvent :: Moved ( _) | WindowEvent :: Destroyed => return false ,
@@ -481,7 +480,7 @@ impl<A: AppData, G: GraphicsInstance, T: Theme<G::Shared>> Window<A, G, T> {
481480 let resize = self . ev_state . with ( shared, theme. size ( ) , window, |cx| {
482481 cx. handle_accesskit_action ( self . widget . as_node ( data) , request) ;
483482 } ) ;
484- if * resize {
483+ if resize. is_some ( ) {
485484 self . apply_size ( data, false , true ) ;
486485 }
487486 }
0 commit comments