You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All apps built with gradio I've used so far have this issue. When using a screenreader such as nvda: https://www.nvaccess.org/
There is an issue which makes it unable for blind or visually impaired screenreader users to choose something from dropdowns in gradio UI.
The list is being presented as an editable field, so a place where the user should input text. When pressing up and down arrows to change the value, the screenreader only announces the current default value, while below a list appears which can't be focused with the keyboard or the screenreader can't see it.
This makes blind people like me unable to select anything from lists like voice models in applio or even the interface language, same with other gradio powered apps like audiocraft plus, whisper UI etc.
Have you searched existing issues? 🔎
I have searched and found no existing issues
Reproduction
model_file = gr.Dropdown(
label=i18n("Voice Model"),
info=i18n("Select the voice model to use for the conversion."),
choices=sorted(names, key=lambda x: extract_model_and_epoch(x)),
interactive=True,
value=default_weight,
allow_custom_value=True,
)
Screenshot
No response
Logs
System Info
Gradio 5.5.0 with gradio client 1.4.2
Severity
Blocking usage of gradio
The text was updated successfully, but these errors were encountered:
Describe the bug
All apps built with gradio I've used so far have this issue. When using a screenreader such as nvda:
https://www.nvaccess.org/
There is an issue which makes it unable for blind or visually impaired screenreader users to choose something from dropdowns in gradio UI.
The list is being presented as an editable field, so a place where the user should input text. When pressing up and down arrows to change the value, the screenreader only announces the current default value, while below a list appears which can't be focused with the keyboard or the screenreader can't see it.
This makes blind people like me unable to select anything from lists like voice models in applio or even the interface language, same with other gradio powered apps like audiocraft plus, whisper UI etc.
Have you searched existing issues? 🔎
Reproduction
Screenshot
No response
Logs
System Info
Severity
Blocking usage of gradio
The text was updated successfully, but these errors were encountered: