We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 21367c8 + 38c5d54 commit 22f2744Copy full SHA for 22f2744
1 file changed
source/NVDAObjects/JAB/__init__.py
@@ -12,7 +12,7 @@
12
import textUtils
13
from controlTypes import TextPosition
14
from ..window import Window
15
-from ..behaviors import EditableTextWithoutAutoSelectDetection, Dialog
+from ..behaviors import ProgressBar, EditableTextWithoutAutoSelectDetection, Dialog
16
import textInfos.offsets
17
from logHandler import log
18
from .. import InvalidNVDAObject
@@ -210,6 +210,9 @@ def findOverlayClasses(self,clsList):
210
clsList.append(Table)
211
elif self.parent and isinstance(self.parent,Table) and self.parent._jabTableInfo:
212
clsList.append(TableCell)
213
+ elif role == "progress bar":
214
+ clsList.append(ProgressBar)
215
+
216
clsList.append(JAB)
217
218
@classmethod
0 commit comments