Skip to content

Commit 26b5381

Browse files
authored
Merge 2b56237 into 3359664
2 parents 3359664 + 2b56237 commit 26b5381

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

source/NVDAObjects/JAB/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import textUtils
1313
from controlTypes import TextPosition
1414
from ..window import Window
15-
from ..behaviors import EditableTextWithoutAutoSelectDetection, Dialog
15+
from ..behaviors import ProgressBar, EditableTextWithoutAutoSelectDetection, Dialog
1616
import textInfos.offsets
1717
from logHandler import log
1818
from .. import InvalidNVDAObject
@@ -210,6 +210,9 @@ def findOverlayClasses(self,clsList):
210210
clsList.append(Table)
211211
elif self.parent and isinstance(self.parent,Table) and self.parent._jabTableInfo:
212212
clsList.append(TableCell)
213+
elif role == "progress bar":
214+
clsList.append(ProgressBar)
215+
213216
clsList.append(JAB)
214217

215218
@classmethod

user_docs/en/changes.t2t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ What's New in NVDA
3030
- When reading non-interactive PDFs in Adobe Reader, the type and state of form fields (such as checkboxes and radio buttons) are now reported. (#13285)
3131
- "Reset configuration to factory defaults" is now accessible in the NVDA menu during secure mode. (#13547)
3232
- Any locked mouse keys will be unlocked when NVDA exits, previously the mouse button would remain locked. (#13410)
33+
- NVDA can now beep or speak on Java application progress bars (#13594)
3334
-
3435

3536

0 commit comments

Comments
 (0)