Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Linux] remove AtkText stub implementation (flutter#34839)
When Orca has "Speak object under mouse" enabled, it tries to get the text range extents for any object that implements the AtkText interface and gets a bit confused by our AtkText stub implementation that merely returns null for `get_text`. Removing the stub implementation helps to avoid the issue that Orca would try to call `atk_text_get_range_extents()` with `start_offset=0` and `end_offset=0`: > Atk-CRITICAL **: atk_text_get_range_extents: assertion 'start_offset >= 0 && start_offset < end_offset' failed
- Loading branch information