mirror of
https://github.com/serrebidev/orca-remote.git
synced 2026-05-31 07:38:01 -07:00
Orca stops reading characters after installing Orca Remote #2
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
serrebi/orca-remote#2
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
After installing Orca Remote, Orca is unable to read characters when using the left and right arrow keys or other review commands. There's only silence instead of the expected behavior. Uninstalling via the uninstall program restores this behavior. I'm using Orca 50.1.2 on Arch Linux with the Voxin Ava voice.
Thanks for the report. I found the problem: Orca 50.1.2 added a \cap_style\ argument to \SpeechServer.speak_character()\, but Orca Remote's monkey patch only accepted \character\ and \css\. That meant character review speech could fail before Orca reached Speech Dispatcher, which matches the silent left/right-arrow review behavior you saw.
Fixed on \master\ in commit \
5aff0923c4\. The wrapper now accepts and forwards extra args/kwargs to Orca's original \speak_character()\, including \cap_style\.I verified the fix against Orca 50.1.2's upstream Python API by loading the actual patched customization file and confirming \cap_style=CapitalizationStyle.SPELL\ is forwarded to the original method. Please pull/reinstall from \master\ and restart Orca; character review should speak again.