Skip to content

Commit dae2511

Browse files
authored
Beta to master
2 parents 57c469b + 73a852a commit dae2511

File tree

121 files changed

+747290
-710550
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+747290
-710550
lines changed

source/NVDAObjects/UIA/excel.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
from UIAHandler.constants import (
1212
UIAutomationType,
1313
)
14+
import braille
1415
import speech
1516
import api
1617
import colors
@@ -568,6 +569,12 @@ def _get_parent(self):
568569
class CellEdit(ExcelObject):
569570
name = ""
570571

572+
def event_typedCharacter(self, ch: str):
573+
# this control does not fire text change events.
574+
# Therefore, we need to update braille manually when typing characters.
575+
braille.handler.handleCaretMove(self)
576+
super().event_typedCharacter(ch)
577+
571578

572579
class BadExcelFormulaEdit(ExcelObject):
573580
"""

0 commit comments

Comments
 (0)