Nolan Darilek

Results 143 comments of Nolan Darilek

Browser-based screen reader detection is not, and should not, be available as it'd be a huge fingerprinting/privacy liability. In this situation, a button as you've described is your best option.

Sorry, I just now checked this out. Does this have to be implemented on the platform layer? Or is there somewhere in an existing UI where I can hook into...

Gotcha, thanks, now that I have an entrypoint, I'll definitely look into it. Going to need UI soon.

OK, finally digging into this and having some issues. If I'm not doing something obviously wrong, I'll put together a minimal repro. Here's relevant metadata from Cargo.toml: ``` bevy_egui =...

FWIW, also plunked down a: `context.ctx().memory().options.screen_reader = true;` at the beginning of `start_menu`. Looks like that might only make labels focusable for now? In any case, I still can't tab...

Sorry to spam this issue so much. No rush, I'm just keeping it updated with a running commentary on what I've done. I did find the issue where I create...

Ok, can't put this down and made some progress. Realized my issue was that I was locking focus to my start button by setting it every frame. I added a...

I fixed tab sticking on the last widget--turns out my initial focus-setting code was at fault again. Thinking in immediate mode is challenging. :) Now, instead of tracking focus, I...

Got it, glad it sounds like an easy fix. I went ahead and abandoned setting an initial focus for now because things aren't interacting well with Bevy's state system. So...

Making decent progress on my fork, and will submit an initia PR soon. Notably, `TextEdit` now reports value changes back to the caller, so my screen reader is able to...