Skip to content

Commit c8099b9

Browse files
authored
Merge aaf7f9f into 613994a
2 parents 613994a + aaf7f9f commit c8099b9

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

nvdaHelper/vbufBackends/gecko_ia2/gecko_ia2.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -954,7 +954,7 @@ VBufStorage_fieldNode_t* GeckoVBufBackend_t::fillVBuf(
954954

955955
{ // Add the table summary if one is present and the table is visible.
956956
VBufStorage_fieldNode_t* summaryTempNode = nullptr;
957-
if (isVisible && description.has_value()) {
957+
if (isVisible && description.has_value() && !description.value().empty()) {
958958
tempNode = summaryTempNode = buffer->addTextFieldNode(parentNode, previousNode, description.value());
959959
}
960960
else if (

user_docs/en/changes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
* NVDA will no longer announce "clipboard history" twice when navigating through the emoji panel menu items. (#16532, @josephsl)
3333
* NVDA will no longer cut off speech and braille when reviewing kaomojis and symbols in the emoji panel. (#16533, @josephsl)
3434
* In applications using Java Access Bridge, NVDA will now correctly read the last blank line of a text instead of repeating the previous line. (#9376, @dmitrii-drobotov)
35+
* If present, NVDA will now use `aria-labelledby` to provide accessible names for tables in Mozilla Firefox. (#5183)
3536

3637
### Changes for Developers
3738

0 commit comments

Comments
 (0)