Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions source/NVDAObjects/IAccessible/winword.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,8 @@ def fetchAssociatedHeaderCellText(self, cell, columnHeader=False):
tempColumnNumber -= 1
continue
break
textList.append(headerCell.range.text)
# 7212: Filter the carriage return and bell character from header text.
textList.append(headerCell.range.text.removesuffix("\r\a"))
Comment thread
SaschaCowley marked this conversation as resolved.
else:
for headerColumnNumber in range(info.columnNumber, info.columnNumber + info.colSpan):
tempRowNumber = rowNumber
Expand All @@ -230,7 +231,8 @@ def fetchAssociatedHeaderCellText(self, cell, columnHeader=False):
tempRowNumber -= 1
continue
break
textList.append(headerCell.range.text)
# 7212: Filter the carriage return and bell character from header text.
textList.append(headerCell.range.text.removesuffix("\r\a"))
text = " ".join(textList)
if text:
return text
Expand Down
1 change: 1 addition & 0 deletions user_docs/en/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
* UIA for XAML and WPF text controls. (#16817, @LeonarddeR)
* IAccessible2 for browsers such as Firefox and Chromium based browsers. (#11545, #16815, @LeonarddeR)
* UIA in Windows Terminal. (#16873, @codeofdusk)
* When accessing Microsoft Word without UI Automation, NVDA no longer outputs garbage characters in braille in table headers defined with the set row and column header commands. (#7212)
* The Seika Notetaker driver now correctly generates braille input for space, backspace and dots with space/backspace gestures. (#16642, @school510587)
* In on-demand speech mode, NVDA does not talk anymore when a message is opened in Outlook, when a new page is loaded in a browser or during the slideshow in PowerPoint. (#16825, @CyrilleB79)

Expand Down